diff options
-rw-r--r-- | mod/profile/icon.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/profile/icon.php b/mod/profile/icon.php index 33a5cde7f..2cf857132 100644 --- a/mod/profile/icon.php +++ b/mod/profile/icon.php @@ -46,7 +46,8 @@ header("Content-type: image/jpeg");
header('Expires: ' . date('r',time() + 864000));
header("Pragma: public");
- header("Cache-Control: public");
+ header("Cache-Control: public"); + header("Content-Length: " . strlen($contents));
echo $contents;
?>
\ No newline at end of file |