aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Photo.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2018-11-08 11:53:27 +0100
committerMax Kostikov <max@kostikov.co>2018-11-08 11:53:27 +0100
commitdc0335d1d56f1d76fa170ef0b222560176e074b5 (patch)
tree2cbf9cef223cf770f903f4a144f6019154d8ecb7 /Zotlabs/Module/Photo.php
parente0a0570cc4409943d546ba114f5e9ba5e4aaa5d1 (diff)
downloadvolse-hubzilla-dc0335d1d56f1d76fa170ef0b222560176e074b5.tar.gz
volse-hubzilla-dc0335d1d56f1d76fa170ef0b222560176e074b5.tar.bz2
volse-hubzilla-dc0335d1d56f1d76fa170ef0b222560176e074b5.zip
Correct "Content-Length:" calculation added
Diffstat (limited to 'Zotlabs/Module/Photo.php')
-rw-r--r--Zotlabs/Module/Photo.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php
index de11b41c7..e218d1c53 100644
--- a/Zotlabs/Module/Photo.php
+++ b/Zotlabs/Module/Photo.php
@@ -262,7 +262,7 @@ class Photo extends \Zotlabs\Web\Controller {
}
header("Last-Modified: " . gmdate("D, d M Y H:i:s", $modified) . " GMT");
- header("Content-Length: " . $filesize);
+ header("Content-Length: " . (isset($filesize) ? $filesize : strlen($data)));
// If it's a file resource, stream it.