summaryrefslogtreecommitdiffstats
path: root/lib/public/response.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-04-03 22:51:36 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-03 22:51:36 +0200
commit3bf269e5655d6b54c63ad2336406de73f145935e (patch)
treeed29895a6ec2e2f44ac081ae1c7fa9d4ec70e1e9 /lib/public/response.php
parentb2b3e1ac946d340b1c5b9ff1af97def6365c4967 (diff)
parent0f58315543a6f3b87d4376cea493c13645687bc2 (diff)
downloadnextcloud-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.php8
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
*/