diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-08-27 17:17:39 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-08-27 17:17:39 +0200 |
commit | 4d5714c43e9dc0f790ceb15942c6b3703cde785e (patch) | |
tree | 5f3ce4e8adeec6532e36a02043224741075d5af5 /lib | |
parent | bbd379389e72b6be1a4890d5fe9c4d0bdc2535a4 (diff) | |
download | rpg-4d5714c43e9dc0f790ceb15942c6b3703cde785e.tar.gz rpg-4d5714c43e9dc0f790ceb15942c6b3703cde785e.tar.bz2 |
private cachecontrol for fetch.php #516
darcs-hash:20050827151739-7ad00-fefec363750c18869a9fadacbe8c87328efa260a.gz
Diffstat (limited to 'lib')
-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 e647ea384..8f5dd40bc 100644 --- a/lib/exe/fetch.php +++ b/lib/exe/fetch.php @@ -76,7 +76,7 @@ header("Content-Type: $MIME"); header('Last-Modified: '.date('r',filemtime($FILE))); header('Content-Length: '.filesize($FILE)); - header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); + header('Cache-Control: private, must-revalidate, post-check=0, pre-check=0'); //application mime type is downloadable if(substr($MIME,0,11) == 'application'){ |