diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-03 22:51:36 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-03 22:51:36 +0200 |
commit | 3bf269e5655d6b54c63ad2336406de73f145935e (patch) | |
tree | ed29895a6ec2e2f44ac081ae1c7fa9d4ec70e1e9 /lib/public/response.php | |
parent | b2b3e1ac946d340b1c5b9ff1af97def6365c4967 (diff) | |
parent | 0f58315543a6f3b87d4376cea493c13645687bc2 (diff) | |
download | nextcloud-server-3bf269e5655d6b54c63ad2336406de73f145935e.tar.gz nextcloud-server-3bf269e5655d6b54c63ad2336406de73f145935e.zip |
Merge pull request #15229 from owncloud/response-setContentLengthHeader
Add OC_Response::setContentLengthHeader() for Apache PHP SAPI workaround...
Diffstat (limited to 'lib/public/response.php')
-rw-r--r-- | lib/public/response.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/response.php b/lib/public/response.php index 2f0922c49ed..d4d32e89ab7 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -68,6 +68,14 @@ class Response { } /** + * Sets the content length header (with possible workarounds) + * @param string|int|float $length Length to be sent + */ + static public function setContentLengthHeader($length) { + \OC_Response::setContentLengthHeader($length); + } + + /** * Disable browser caching * @see enableCaching with cache_time = 0 */ |