From de19cd7342abc1fb96dce8403128152b7708ec58 Mon Sep 17 00:00:00 2001 From: stekkel Date: Fri, 8 Mar 2002 21:22:31 +0000 Subject: [PATCH] added extra variable to make it possible to add more lines to the onload function git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2555 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/page_header.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/functions/page_header.php b/functions/page_header.php index 8c39837c..1673fac1 100644 --- a/functions/page_header.php +++ b/functions/page_header.php @@ -30,10 +30,6 @@ function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE $base_uri . "themes/css/$custom_css\">\n"; } - if( $do_hook ) { - do_hook ("generic_header"); - } - echo "$title$xtra\n\n"; } @@ -47,11 +43,10 @@ function displayInternalLink($path, $text, $target='') { echo ''.$text.''; } -function displayPageHeader($color, $mailbox) { +function displayPageHeader($color, $mailbox, $xtra='') { global $delimiter, $hide_sm_attributions, $base_uri, $PHP_SELF, $frame_top, $compose_new_win, $username, $datadir; - $module = substr( $PHP_SELF, ( strlen( $PHP_SELF ) - strlen( $base_uri ) ) * -1 ); if (!isset($frame_top)) { $frame_top = '_top'; @@ -87,6 +82,7 @@ function displayPageHeader($color, $mailbox) { "if( pos >= 0 ) {\n". "document.forms[i-1].elements[pos].focus();\n". "}\n". + "$xtra\n". "}\n"; if ($compose_new_win == '1') { $width= getPref($username, $datadir, 'editor_size', 76); @@ -104,7 +100,7 @@ function displayPageHeader($color, $mailbox) { "}\n"; } $js .= "// -->\n". - "\n"; + "\n"; $onload = "onLoad=\"checkForm();\""; displayHtmlHeader ('Squirrelmail', $js); break; @@ -207,7 +203,7 @@ function compose_Header($color, $mailbox) { "}\n". "}\n"; $js .= "// -->\n". - "\n"; + "\n"; $onload = "onLoad=\"checkForm();\""; displayHtmlHeader (_("Compose"), $js); break; -- 2.25.1