From: pdontthink Date: Sat, 1 Aug 2015 04:36:18 +0000 (+0000) Subject: Minor fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=fc58ac3cc45bbf2a1de28adadb9f3bed8ccbe39e;p=squirrelmail.git Minor fix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14519 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/login.php b/src/login.php index 536ca9ac..951c6841 100644 --- a/src/login.php +++ b/src/login.php @@ -101,7 +101,8 @@ if (! isset($color) || ! is_array($color)) { } // if any plugin returns TRUE here, the standard page header will be skipped -if (!boolean_hook_function('login_before_page_header', array($header), 1)) +$temp = array($header); +if (!boolean_hook_function('login_before_page_header', $temp, 1)) displayHtmlHeader( "$org_name - " . _("Login"), $header, FALSE );