diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-04 08:25:28 -0700 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-04 08:25:28 -0700 |
commit | 4010aabb72ab25ead1b4b1bc3d34dab6265fc859 (patch) | |
tree | 9b0f280efda438334cd0498f95eea08729367a18 /program/lib | |
parent | ceb508620e665309972e96225c45f23ab2dea84b (diff) | |
parent | 49311c55dd3a763306f70fbed44919f9c96ea186 (diff) |
Merge pull request #71 from zouguangxian/master
Recommendation Set the cache-control directive to no-cache and no-store.
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_output.php | 2 |
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"); } } |