[-] BO : #PSCFV-2758 : fix error when use Tools::displayErrors()

This commit is contained in:
lLefevre
2012-06-08 14:54:59 +00:00
parent 5cc8fea579
commit 2c8222bf45
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -837,7 +837,7 @@ abstract class ModuleCore
public static function getInstanceByName($module_name)
{
if (!Validate::isModuleName($module_name))
die(Tools::displayErrors());
die(Tools::displayError());
if (!isset(self::$_INSTANCE[$module_name]))
{
if (Tools::file_exists_cache(_PS_MODULE_DIR_.$module_name.'/'.$module_name.'.php'))
@@ -397,7 +397,7 @@ class AdminProductsControllerCore extends AdminController
$id_product = (int)Tools::getValue($this->identifier);
$res = $attachment->attachProduct($id_product);
if (!$res)
$this->errors[] = Tools::displayErrors('Unable to associate this attachment to product');
$this->errors[] = Tools::displayError('Unable to associate this attachment to product');
}
}
else