diff options
Diffstat (limited to 'mod/profile/icon.php')
-rw-r--r-- | mod/profile/icon.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/profile/icon.php b/mod/profile/icon.php index 38a9dc1b2..594bb0894 100644 --- a/mod/profile/icon.php +++ b/mod/profile/icon.php @@ -51,6 +51,8 @@ header("Pragma: public");
header("Cache-Control: public"); header("Content-Length: " . strlen($contents));
- echo $contents;
+ $splitString = str_split($contents, 8192);
+ foreach($splitString as $chunk)
+ echo $chunk;
?>
\ No newline at end of file |