[-] BO : fix #PSCFV-5008

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17876 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2012-10-16 13:14:14 +00:00
parent e910a791dd
commit c1a4f91af6
+4 -3
View File
@@ -762,7 +762,8 @@ class AdminImportControllerCore extends AdminController
$entity->{$key}[$id_lang_tmp] = $value;
}
else
$entity->{$key} = isset(self::$validators[$key]) ? call_user_func(self::$validators[$key], $infos) : $infos;
if (!empty($infos))
$entity->{$key} = isset(self::$validators[$key]) ? call_user_func(self::$validators[$key], $infos) : $infos;
return true;
}
@@ -2772,8 +2773,8 @@ class AdminImportControllerCore extends AdminController
{
if ($this->tabAccess['edit'] === '1')
{
Db::getInstance()->execute('DELETE FROM `'._DB_PREFIX_.'import_match` WHERE `id_import_match` = '.(int)Tools::getValue('idImportMatchs'));
die;
Db::getInstance()->execute('DELETE FROM `'._DB_PREFIX_.'import_match` WHERE `id_import_match` = '.(int)Tools::getValue('idImportMatchs'));
die;
}
}
}