aboutsummaryrefslogtreecommitdiff
path: root/simplecache
diff options
context:
space:
mode:
Diffstat (limited to 'simplecache')
-rw-r--r--simplecache/view.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/simplecache/view.php b/simplecache/view.php
index afc0f89ae..8d37a0cdc 100644
--- a/simplecache/view.php
+++ b/simplecache/view.php
@@ -60,11 +60,12 @@
header("Content-Length: " . strlen($contents));
}
}
- }
-
- // echo $contents;
- $splitString = str_split($contents, 8192);
- foreach($splitString as $chunk)
- echo $chunk;
+ }
+
+ $split_output = str_split($contents, 8192);
+
+ foreach($split_output as $chunk)
+ echo $chunk;
+
?> \ No newline at end of file