[-] BO : #PSCFV-2736 : import product : fix bug when the image isn't uploaded

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16005 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2012-06-13 09:39:51 +00:00
parent e806afacb2
commit baf17b2ed4
+4 -1
View File
@@ -1331,7 +1331,10 @@ class AdminImportControllerCore extends AdminController
// associate image to selected shops
$image->associateTo($shops);
if (!AdminImportController::copyImg($product->id, $image->id, $url))
$this->warnings[] = Tools::displayError('Error copying image:').' '.$url;
{
$image->delete();
$this->warnings[] = sprintf(Tools::displayError('Error copying image: %s'), $url);
}
}
else
$error = true;