summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZou Guangxian <zouguangxian@gmail.com>2013-05-04 23:15:28 +0800
committerAleksander Machniak <alec@alec.pl>2013-05-04 17:29:00 +0200
commit13a77deef43e179aa0521652d5d31ffc15144978 (patch)
tree245f1062e3ec4dae3040bc33122a80c17f19020e
parentaf4185be6480f46e8a24ac19671c2aef728f0730 (diff)
* fixed: modsecurity warning: AppDefect: Cache-Control Response Header Missing 'no-store' flag. http://websecuritytool.codeplex.com/wikipage?title=Checks#http-cache-control-header-no-store
-rw-r--r--program/lib/Roundcube/rcube_output.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_output.php b/program/lib/Roundcube/rcube_output.php
index b8ae86cf6..7ccf9a02e 100644
--- a/program/lib/Roundcube/rcube_output.php
+++ b/program/lib/Roundcube/rcube_output.php
@@ -162,7 +162,7 @@ abstract class rcube_output
header("Cache-Control: private, must-revalidate");
}
else {
- header("Cache-Control: private, no-cache, must-revalidate, post-check=0, pre-check=0");
+ header("Cache-Control: private, no-cache, no-store, must-revalidate, post-check=0, pre-check=0");
header("Pragma: no-cache");
}
}