Cannot insert a supplier transaction record in Direct Supplier Invoice (certain MySql...
[fa-stable.git] / includes / hooks.inc
index 90bf2071b231bd2f2b059ccd717e38f939624f0e..515bcccf3c9f72a22f4bbf79439a3d1a4973c2b8 100644 (file)
@@ -278,9 +278,9 @@ function hook_invoke_first($method, &$data, $opts=null)
                if (method_exists($hook, $method)) {
                        set_ext_domain('modules/'.$ext);
                        $result = $hook->$method($data, $opts);
+                       set_ext_domain();
                        if (isset($result))
                                break;
-                       set_ext_domain();
                }
        }
        return $result;
@@ -300,9 +300,9 @@ function hook_invoke_last($method, &$data, $opts=null)
                if (method_exists($hook, $method)) {
                        set_ext_domain('modules/'.$ext);
                        $result = $hook->$method($data, $opts);
+                       set_ext_domain();
                        if (isset($result))
                                break;
-                       set_ext_domain();
                }
        }
        return $result;