fixed display of image resolution/size, which was broken after the new image class was introduced

This commit is contained in:
Savetheinternet 2011-07-18 22:06:24 +10:00
parent b4b98a7ede
commit 25cbb68ea1

View File

@ -447,6 +447,8 @@
error($config['error']['maxsize']); error($config['error']['maxsize']);
} }
$post['width'] = $image->size->width;
$post['height'] = $image->size->height;
if($config['minimum_copy_resize'] && if($config['minimum_copy_resize'] &&
$image->size->width <= $config['thumb_width'] && $image->size->width <= $config['thumb_width'] &&
@ -468,6 +470,7 @@
$post['thumbwidth'] = $thumb->width; $post['thumbwidth'] = $thumb->width;
$post['thumbheight'] = $thumb->height; $post['thumbheight'] = $thumb->height;
$thumb->_destroy(); $thumb->_destroy();
} }
$image->destroy(); $image->destroy();