git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14518
7612ce4b-ef26-0410-bec9-
ea0150e637f0
- Added MD5 alternative to directory hash calculation
- Added ability for administrator to control whether or not users
can edit their reply-to address ($edit_reply_to in config.php)
+ - Added new "login_before_page_header" (boolean) hook; allows
+ plugins to have more explicit control over login page header
Version 1.5.1 (branched on 2006-02-12)
--------------------------------------
$color[8] = '#000000'; /* black Normal text */
}
-displayHtmlHeader( "$org_name - " . _("Login"), $header, FALSE );
+// if any plugin returns TRUE here, the standard page header will be skipped
+if (!boolean_hook_function('login_before_page_header', array($header), 1))
+ displayHtmlHeader( "$org_name - " . _("Login"), $header, FALSE );