X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Finit.php;h=17b4d23a40f850b3f507c9c7a69c59f96ca60b83;hb=d849b5708d56913f760bf1fa7a377d602935a9cd;hp=d4abef04aeaf6bd6138c513902b32aa87fd138c2;hpb=835db280639a530c9336208f24501eec0dfe28ef;p=squirrelmail.git diff --git a/include/init.php b/include/init.php index d4abef04..17b4d23a 100644 --- a/include/init.php +++ b/include/init.php @@ -61,6 +61,13 @@ if ((bool) ini_get('register_globals') && unset($GLOBALS['value']); } +/** + * Used as a dummy value, e.g., for passing as an empty + * hook argument. + */ +global $null; +$null = NULL; + /** * [#1518885] session.use_cookies = off breaks SquirrelMail * @@ -264,7 +271,7 @@ if (!$disable_plugins && file_exists(SM_PATH . 'config/plugin_hooks.php')) { * allow plugins to override main configuration; hook is placed * here to allow plugins to use session information to do their work */ -do_hook('config_override'); +do_hook('config_override', $null); /** * DISABLED. @@ -298,14 +305,6 @@ if (!isset($sInitLocation)) { $sInitLocation=NULL; } -/** - * Before 1.5.2 version hook was part of functions/constants.php. - * After init layout changes, hook had to be moved because include/constants.php is - * loaded before plugins are initialized. - * @since 1.2.0 - */ -do_hook('loading_constants'); - switch ($sInitLocation) { case 'style': @@ -348,7 +347,7 @@ switch ($sInitLocation) { require(SM_PATH . 'functions/prefs.php'); require(SM_PATH . 'functions/auth.php'); /* hook loads custom prefs backend plugins */ - $prefs_backend = do_hook_function('prefs_backend'); + $prefs_backend = do_hook('prefs_backend', $null); if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH . $prefs_backend)) { require(SM_PATH . $prefs_backend); } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) { @@ -460,7 +459,7 @@ switch ($sInitLocation) { /* see 'redirect' case */ require(SM_PATH . 'functions/prefs.php'); - $prefs_backend = do_hook_function('prefs_backend'); + $prefs_backend = do_hook('prefs_backend', $null); if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH . $prefs_backend)) { require(SM_PATH . $prefs_backend); } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {