aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/icondirect.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile/icondirect.php')
-rw-r--r--mod/profile/icondirect.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/profile/icondirect.php b/mod/profile/icondirect.php
index cf67fae04..1bfa51fee 100644
--- a/mod/profile/icondirect.php
+++ b/mod/profile/icondirect.php
@@ -91,7 +91,9 @@
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;
}
} else {
mysql_close($mysql_dblink);