From: Michael Gapczynski Date: Sun, 3 Mar 2013 17:03:26 +0000 (-0500) Subject: Chunk size comment should say kB, not MB X-Git-Tag: v5.0.0RC2~29^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=71bdccf3471ed7ff97c4e636ce18e4a018894d38;p=nextcloud-server.git Chunk size comment should say kB, not MB --- diff --git a/lib/files/view.php b/lib/files/view.php index f48d0c8b225..3e2cb080e1d 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -199,7 +199,7 @@ class View { @ob_end_clean(); $handle = $this->fopen($path, 'rb'); if ($handle) { - $chunkSize = 8192; // 8 MB chunks + $chunkSize = 8192; // 8 kB chunks while (!feof($handle)) { echo fread($handle, $chunkSize); flush();