Boolean hook call needs priority 1 to error out when any plugin has problems.
[squirrelmail.git] / src / configtest.php
index eb6b3223899b8b1e57d50f521f2c99209cff7f63..4362b32df65eec615918ae18ba4c4d9721918f24 100644 (file)
@@ -349,10 +349,10 @@ if (isset($plugins[0])) {
         do_err($plugin_load_error);
     }
     /**
-     * This hook was added in 1.5.2. Each plugins should print an error 
+     * This hook was added in 1.5.2 and 1.4.10. Each plugins should print an error 
      * message and return TRUE if there are any errors in its setup/configuration.
      */
-    $plugin_err = boolean_hook_function('configtest', $null);
+    $plugin_err = boolean_hook_function('configtest', $null, 1);
     if($plugin_err) {
         do_err('Some plugin tests failed.');
     } else {