From eb189fd848b43b8696faa96e10e0addbfae972d2 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Fri, 26 Oct 2001 11:13:37 +0000 Subject: [PATCH] Some browsers may complain when fomr not present. Corrected. --- functions/page_header.php | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/functions/page_header.php b/functions/page_header.php index 90ad7f50a..0e204eb70 100644 --- a/functions/page_header.php +++ b/functions/page_header.php @@ -16,14 +16,10 @@ function displayHtmlHeader ($title="SquirrelMail") { global $theme_css; - echo ''; - echo "\n\n"; - echo "\n"; - echo "\n"; - if ($theme_css != "") { - printf ('', - $theme_css); - echo "\n"; + echo '' . + "\n\n\n\n"; + if ($theme_css != '') { + echo "\n"; } do_hook ("generic_header"); @@ -32,10 +28,10 @@ echo "\n\n"; } - function displayInternalLink ($path, $text, $target="") { + function displayInternalLink ($path, $text, $target='') { global $base_uri; - if ($target != "") + if ($target != '') $target = " target=\"$target\""; echo ''.$text.''; @@ -44,7 +40,7 @@ function displayPageHeader($color, $mailbox) { displayHtmlHeader (); - echo "\n\n"; + echo "\n\n"; /** Here is the header and wrapping table **/ $shortBoxName = readShortMailboxName($mailbox, "."); @@ -83,4 +79,4 @@ echo " \n"; echo "\n\n"; } -?> +?> \ No newline at end of file