From 71bdccf3471ed7ff97c4e636ce18e4a018894d38 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 3 Mar 2013 12:03:26 -0500 Subject: [PATCH] Chunk size comment should say kB, not MB --- lib/files/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/view.php b/lib/files/view.php index f48d0c8b22..3e2cb080e1 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();