diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-02-13 23:48:05 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-02-13 23:48:05 +0100 |
commit | 525306c1e2930c6b378b0a4e9fb92eeb90865b0a (patch) | |
tree | 790f22f18cc999de67fbcaa8de691c843898730e /lib/response.php | |
parent | 29fc82c364e2e90330d9858528e50d785e5e66bd (diff) | |
download | nextcloud-server-525306c1e2930c6b378b0a4e9fb92eeb90865b0a.tar.gz nextcloud-server-525306c1e2930c6b378b0a4e9fb92eeb90865b0a.zip |
Replace Expires and caching headers by OC_Response functions
Diffstat (limited to 'lib/response.php')
-rw-r--r-- | lib/response.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/response.php b/lib/response.php index f47534aeefb..2fa0a5adcd3 100644 --- a/lib/response.php +++ b/lib/response.php @@ -30,6 +30,9 @@ class OC_Response { } } + static public function disableCaching() { + self::enableCaching(0); + } static public function setStatus($status) { $protocol = $_SERVER['SERVER_PROTOCOL']; |