[-] Classes : fixed bug #PSFV-300 - Bug on Orders

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12266 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
aFolletete
2012-01-09 14:07:44 +00:00
parent 744e398a19
commit a2138c2e4c
+4 -1
View File
@@ -1724,7 +1724,10 @@ class AdminOrdersControllerCore extends AdminController
$name = 'product_mini_'.(int)$product['product_id'].(isset($product['product_attribute_id']) ? '_'.(int)$product['product_attribute_id'] : '').'.jpg';
// generate image cache, only for back office
$product['image_tag'] = cacheImage(_PS_IMG_DIR_.'p/'.$product['image']->getExistingImgPath().'.jpg', $name, 45, 'jpg');
$product['image_size'] = getimagesize(_PS_TMP_IMG_DIR_.$name);
if (file_exists(_PS_TMP_IMG_DIR_.$name))
$product['image_size'] = getimagesize(_PS_TMP_IMG_DIR_.$name);
else
$product['image_size'] = false;
}
}