summaryrefslogtreecommitdiff
path: root/program/include/rcube_shared.inc
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-07-08 16:12:45 +0000
committeralecpl <alec@alec.pl>2010-07-08 16:12:45 +0000
commit5e0999c53c8da92a84622199611bc55540b53a71 (patch)
tree91d64e8e2090c95af688f43e217a5228e1316860 /program/include/rcube_shared.inc
parent58a58cc1a3bfd768322cbc9a7c15d00ed4ffbe33 (diff)
- Fix opening attachments on IE (#1486829)
Diffstat (limited to 'program/include/rcube_shared.inc')
-rw-r--r--program/include/rcube_shared.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc
index 79526277d..7bb47a5f0 100644
--- a/program/include/rcube_shared.inc
+++ b/program/include/rcube_shared.inc
@@ -39,14 +39,16 @@ function send_nocacheing_headers()
header("Expires: ".gmdate("D, d M Y H:i:s")." GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
- header("Cache-Control: private, no-cache, must-revalidate, post-check=0, pre-check=0");
- header("Pragma: no-cache");
// Request browser to disable DNS prefetching (CVE-2010-0464)
header("X-DNS-Prefetch-Control: off");
// We need to set the following headers to make downloads work using IE in HTTPS mode.
if ($OUTPUT->browser->ie && rcube_https_check()) {
header('Pragma: private');
+ header("Cache-Control: private, must-revalidate");
+ } else {
+ header("Cache-Control: private, no-cache, must-revalidate, post-check=0, pre-check=0");
+ header("Pragma: no-cache");
}
}