diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-06-15 18:35:41 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-06-15 18:35:41 +0200 |
commit | 34f5541088e99367a8bcdc1ca2ba4fa8524eec68 (patch) | |
tree | 2bce13a37e15f7a52415830149b198b001adec52 /lib/public | |
parent | 15ba2a41002d0fb72a5a6ee7f3cb129b03acc4e5 (diff) | |
download | nextcloud-server-34f5541088e99367a8bcdc1ca2ba4fa8524eec68.tar.gz nextcloud-server-34f5541088e99367a8bcdc1ca2ba4fa8524eec68.zip |
Add `no-store` to AppFramework
Diffstat (limited to 'lib/public')
-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; |