From: robsiemb Date: Wed, 23 Oct 2002 20:22:02 +0000 (+0000) Subject: avoid stupid IE6 bug with frames and scrollbars X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5ca4b1eedc3a22f4180a8aec011c076ae3133776;p=squirrelmail.git 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 --- 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"; }