Zou Guangxian
2013-05-04 13a77deef43e179aa0521652d5d31ffc15144978
* 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
1 files modified
2 ■■■ changed files
program/lib/Roundcube/rcube_output.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_output.php
@@ -162,7 +162,7 @@
            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");
        }
    }