diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-03-03 20:03:57 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-03-03 20:03:57 +0100 |
commit | 3b6f95e62fc7049712b96aacd245be507f83d5ee (patch) | |
tree | 95c1f79703974707deaf308d71a6e81621503c13 | |
parent | 1c7d84bee69b8965844a960fa91551634986b35f (diff) | |
download | rpg-3b6f95e62fc7049712b96aacd245be507f83d5ee.tar.gz rpg-3b6f95e62fc7049712b96aacd245be507f83d5ee.tar.bz2 |
adjusted cache=0 headers again
-rw-r--r-- | lib/exe/fetch.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/exe/fetch.php b/lib/exe/fetch.php index 28401ab39..8b77fa0b2 100644 --- a/lib/exe/fetch.php +++ b/lib/exe/fetch.php @@ -141,8 +141,8 @@ function sendFile($file, $mime, $dl, $cache, $public = false) { } else { // no cache at all header('Expires: Thu, 01 Jan 1970 00:00:00 GMT'); - header('Cache-Control: private, no-transform, max-age=0'); - header('Pragma: no-store'); + header('Cache-Control: no-cache, no-transform, max-age=0'); + header('Pragma: no-cache'); } //send important headers first, script stops here if '304 Not Modified' response |