diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/appframework/http/response.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/appframework/http/response.php b/lib/public/appframework/http/response.php index 8fd5fdd8f53..f6c9460ff15 100644 --- a/lib/public/appframework/http/response.php +++ b/lib/public/appframework/http/response.php @@ -94,7 +94,7 @@ class Response { $this->addHeader('Cache-Control', 'max-age=' . $cacheSeconds . ', must-revalidate'); } else { - $this->addHeader('Cache-Control', 'no-cache, must-revalidate'); + $this->addHeader('Cache-Control', 'no-cache, no-store, must-revalidate'); } return $this; |