Chunk size comment should say kB, not MB

This commit is contained in:
Michael Gapczynski 2013-03-03 12:03:26 -05:00
parent d8655a4248
commit 71bdccf347
1 changed files with 1 additions and 1 deletions

View File

@ -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();