From 5ca4b1eedc3a22f4180a8aec011c076ae3133776 Mon Sep 17 00:00:00 2001 From: robsiemb Date: Wed, 23 Oct 2002 20:22:02 +0000 Subject: [PATCH] avoid stupid IE6 bug with frames and scrollbars git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3968 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/page_header.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/functions/page_header.php b/functions/page_header.php index 662807a6..227c8575 100644 --- a/functions/page_header.php +++ b/functions/page_header.php @@ -46,7 +46,24 @@ function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE do_hook("generic_header"); } - echo "\n$title$xtra\n\n"; + echo "\n$title$xtra\n"; + + /* work around IE6's scrollbar bug */ + echo << + + + +ECHO; + + echo "\n\n\n"; } -- 2.25.1