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

This commit is contained in:
mMarinetti
2012-02-08 10:15:12 +00:00
parent 451db2f359
commit 6b1da50a36
@@ -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);
}