From 0859656aa5a4df10004b79a54b4d819a9a9d8513 Mon Sep 17 00:00:00 2001 From: braverock Date: Mon, 26 Apr 2004 22:05:53 +0000 Subject: [PATCH] - remove first !IE6 check and send Pragma and NoCache Headers for all IE versions to better support IE6 git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7264 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mime.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/mime.php b/functions/mime.php index 3c54d799..02740fc0 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -1970,7 +1970,7 @@ function magicHTML($body, $id, $message, $mailbox = 'INBOX') { // The best thing you can do for IE is to upgrade to the latest // version //set all the Cache Control Headers for IE - if ($isIE && !$isIE6) { + if ($isIE) { header ("Pragma: public"); header ("Cache-Control: no-store, max-age=0, no-cache, must-revalidate"); # HTTP/1.1 header ("Cache-Control: post-check=0, pre-check=0", false); @@ -2027,4 +2027,4 @@ function magicHTML($body, $id, $message, $mailbox = 'INBOX') { } // end fn SendDownloadHeaders -?> \ No newline at end of file +?> -- 2.25.1