From: pdontthink Date: Sat, 20 Jan 2007 07:05:20 +0000 (+0000) Subject: Boolean hook call needs priority 1 to error out when any plugin has problems. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=62fb877bb399fb7ae74231f16df5abd6c80094ce;p=squirrelmail.git Boolean hook call needs priority 1 to error out when any plugin has problems. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12161 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/configtest.php b/src/configtest.php index 4f695be2..4362b32d 100644 --- a/src/configtest.php +++ b/src/configtest.php @@ -352,7 +352,7 @@ if (isset($plugins[0])) { * 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 {