- remove first !IE6 check and send Pragma and NoCache Headers
authorbraverock <braverock@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 26 Apr 2004 22:05:53 +0000 (22:05 +0000)
committerbraverock <braverock@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 26 Apr 2004 22:05:53 +0000 (22:05 +0000)
  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

index 3c54d79947dfd08d2f7c0725f6b53d10a2983f67..02740fc00ef94e4b95db420e8596fa398759749d 100644 (file)
@@ -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
+?>