diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-03-03 21:01:21 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-03-03 21:01:21 +0100 |
commit | 1b8b28faf419d50137b455d4d9a39cfd0fff3f4c (patch) | |
tree | c967536ad09f983f7b95641831bc30b1a65c183c | |
parent | a6c362b61d32c897d430e72356b4efe5a399c0ac (diff) | |
download | rpg-1b8b28faf419d50137b455d4d9a39cfd0fff3f4c.tar.gz rpg-1b8b28faf419d50137b455d4d9a39cfd0fff3f4c.tar.bz2 |
there's no pragma: private
-rw-r--r-- | lib/exe/fetch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/fetch.php b/lib/exe/fetch.php index b9270d277..a558a3db8 100644 --- a/lib/exe/fetch.php +++ b/lib/exe/fetch.php @@ -136,7 +136,7 @@ function sendFile($file, $mime, $dl, $cache, $public = false) { // cache in browser header('Expires: '.gmdate("D, d M Y H:i:s", $expires).' GMT'); header('Cache-Control: private, no-transform, max-age='.$maxage); - header('Pragma: private'); + header('Pragma: no-cache'); } } else { // no cache at all |