// fix a false positive issue in upgrade process (thanks again to Vincent Grimaud)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13112 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2012-02-08 10:15:12 +00:00
parent fce0745413
commit c01de935dc
@@ -27,7 +27,7 @@
function remove_module_from_hook($module_name, $hook_name)
{
$result = false;
$result = true;
$id_module = Db::getInstance()->getValue('
SELECT `id_module` FROM `'._DB_PREFIX_.'module`
@@ -42,7 +42,7 @@ function remove_module_from_hook($module_name, $hook_name)
if ((int)$id_hook > 0)
{
$result = Db::getInstance()->execute('
$result &= Db::getInstance()->execute('
DELETE FROM `'._DB_PREFIX_.'hook_module`
WHERE `id_module` = '.(int)$id_module.' AND `id_hook` = '.(int)$id_hook);
}