diff options
Diffstat (limited to 'simplecache')
-rw-r--r-- | simplecache/view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simplecache/view.php b/simplecache/view.php index 8d37a0cdc..da6f68777 100644 --- a/simplecache/view.php +++ b/simplecache/view.php @@ -62,7 +62,7 @@ }
} - $split_output = str_split($contents, 8192); + $split_output = str_split($contents, 1024); foreach($split_output as $chunk) echo $chunk;
|