From 8df1c96e925f32a319a46a8c92ba58f3457ed2a6 Mon Sep 17 00:00:00 2001 From: gustavf Date: Thu, 25 May 2000 09:17:12 +0000 Subject: [PATCH] Added basic CSS support. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@509 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/page_header.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/functions/page_header.php b/functions/page_header.php index 95a19741..587f1abb 100644 --- a/functions/page_header.php +++ b/functions/page_header.php @@ -43,10 +43,17 @@ header ("Content-Type: text/html; charset=$default_charset"); function displayHtmlHeader ($title="SquirrelMail") { + global $theme_css; + echo ''; echo "\n\n"; echo "\n"; echo "\n"; + if ($theme_css != "") { + printf ('', + $theme_css); + echo "\n"; + } echo "$title"; echo "\n\n"; } -- 2.25.1