aboutsummaryrefslogtreecommitdiff
path: root/simplecache/view.php
diff options
context:
space:
mode:
Diffstat (limited to 'simplecache/view.php')
-rw-r--r--simplecache/view.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/simplecache/view.php b/simplecache/view.php
index 99f40c141..afc0f89ae 100644
--- a/simplecache/view.php
+++ b/simplecache/view.php
@@ -62,6 +62,9 @@
}
}
- echo $contents;
+ // echo $contents;
+ $splitString = str_split($contents, 8192);
+ foreach($splitString as $chunk)
+ echo $chunk;
?> \ No newline at end of file