X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fhooks.inc;h=393fc8720a96a1d45116931554b76576c25304c4;hb=85cdc977a80b32727c13aae517f58437e908a033;hp=d2096c17004362352f2c95020d1fad6f45955396;hpb=43ad91751a494b2572eb64441248aa3a87f0141e;p=fa-stable.git diff --git a/includes/hooks.inc b/includes/hooks.inc index d2096c17..393fc872 100644 --- a/includes/hooks.inc +++ b/includes/hooks.inc @@ -211,7 +211,6 @@ class hooks { return true; } return array($qoh, 'stockmankobg'); - return array($line_item->qty_dispatched, 'stockmankobg'); } } @@ -236,11 +235,13 @@ function install_hooks() unset($code, $hook_class); } // install hooks provided by active extensions - foreach($installed_extensions as $ext) { - $hook_class = 'hooks_'.$ext['package']; - if ($ext['active'] && class_exists($hook_class)) { - $Hooks[$ext['package']] = new $hook_class; - } + if (isset($installed_extensions) && !empty($installed_extensions)) { + foreach($installed_extensions as $ext) { + $hook_class = 'hooks_'.$ext['package']; + if ($ext['active'] && class_exists($hook_class)) { + $Hooks[$ext['package']] = new $hook_class; + } + } } } /*