diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-11-10 18:40:34 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-11-10 18:40:34 +0000 |
commit | 4f9b21086724b36505ea7e3195501c1c95771c00 (patch) | |
tree | 95fc0a9eda4ce2dfec63d55d2bafc48a4ea9cead | |
parent | a2e60f2a4853e0776c68231efac4d3b77ff0f4b8 (diff) | |
download | elgg-4f9b21086724b36505ea7e3195501c1c95771c00.tar.gz elgg-4f9b21086724b36505ea7e3195501c1c95771c00.tar.bz2 |
Content length on images
git-svn-id: https://code.elgg.org/elgg/trunk@2434 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/groups/graphics/icon.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/groups/graphics/icon.php b/mod/groups/graphics/icon.php index d98a73f97..99a79dab0 100644 --- a/mod/groups/graphics/icon.php +++ b/mod/groups/graphics/icon.php @@ -39,5 +39,6 @@ header("Content-type: image/jpeg"); header("Pragma: public"); header("Cache-Control: public"); + header("Content-Length: " . strlen($contents)); echo $contents; ?>
\ No newline at end of file |