From a3ab54ab339e77936d6262af18ae7eecfe5b6c1b Mon Sep 17 00:00:00 2001 From: gustavf Date: Thu, 25 May 2000 08:07:12 +0000 Subject: [PATCH] displayHtmlHeader now takes a title as parameter (defaults to SquirrelMail). git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@508 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/page_header.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/page_header.php b/functions/page_header.php index 8ad38b9d..95a19741 100644 --- a/functions/page_header.php +++ b/functions/page_header.php @@ -42,12 +42,12 @@ if ($default_charset != "") header ("Content-Type: text/html; charset=$default_charset"); - function displayHtmlHeader ($title="") { + function displayHtmlHeader ($title="SquirrelMail") { echo ''; echo "\n\n"; echo "\n"; echo "\n"; - echo "SquirrelMail"; + echo "$title"; echo "\n\n"; } -- 2.25.1