summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2012-12-19 11:22:01 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2012-12-19 11:22:01 +0100
commit186147d1eefaffc4c548746a30e417f7ce4d3a36 (patch)
tree646f4720253ca40575d66c1af8d4c6901689b01c
parentad497d23ec65dc8bf192097bbfc0b4241c74e7a0 (diff)
downloadnextcloud-server-186147d1eefaffc4c548746a30e417f7ce4d3a36.tar.gz
nextcloud-server-186147d1eefaffc4c548746a30e417f7ce4d3a36.zip
refs #933 send content length header - this will allow the browser to show the progressbar
-rw-r--r--lib/files.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/files.php b/lib/files.php
index f8bae778ed2..69097e41074 100644
--- a/lib/files.php
+++ b/lib/files.php
@@ -212,6 +212,7 @@ class OC_Files {
self::addSendfileHeader($filename);
}else{
header('Content-Type: '.OC_Filesystem::getMimeType($filename));
+ header("Content-Length: ".OC_Filesystem::filesize($filename));
$storage = OC_Filesystem::getStorage($filename);
if ($storage instanceof OC_Filestorage_Local) {
self::addSendfileHeader(OC_Filesystem::getLocalFile($filename));
@@ -227,8 +228,6 @@ class OC_Files {
die('403 Forbidden');
}
if($only_header) {
- if(!$zip)
- header("Content-Length: ".OC_Filesystem::filesize($filename));
return ;
}
if($zip) {