From 2c21ef20dd7290026b2f4c081b9a410dfa2e4ca1 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Sun, 13 Jan 2002 18:01:45 +0000 Subject: [PATCH] Multiple css bugfix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2131 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/page_header.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/functions/page_header.php b/functions/page_header.php index ef84f2d2..7463dc9f 100644 --- a/functions/page_header.php +++ b/functions/page_header.php @@ -14,17 +14,18 @@ // Always set up the language before calling these functions function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) { - global $theme_css, $custom_css; - + global $theme_css, $custom_css, $base_uri; + echo '' . "\n\n\n\n"; - + if ( !isset( $custom_css ) || $custom_css == 'none' ) { if ($theme_css != '') { echo "\n"; } } else { - echo "\n"; + echo '\n"; } if( $do_hook ) { -- 2.25.1