diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-10 05:58:22 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-10 05:58:22 -0700 |
commit | 04e65823d70d448400d3be7f0b3244ea8658834d (patch) | |
tree | e0c62cb3493c0026f39ee0077cba67edd935f632 /mod/photo.php | |
parent | 503f403b3b2bb45cd98ef8e9d4fd2e2103306019 (diff) | |
download | volse-hubzilla-04e65823d70d448400d3be7f0b3244ea8658834d.tar.gz volse-hubzilla-04e65823d70d448400d3be7f0b3244ea8658834d.tar.bz2 volse-hubzilla-04e65823d70d448400d3be7f0b3244ea8658834d.zip |
more post branch bug fixes
Diffstat (limited to 'mod/photo.php')
-rw-r--r-- | mod/photo.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/photo.php b/mod/photo.php index 6e4d981d2..6174b10ab 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -112,6 +112,9 @@ function photo_init(&$a) { } header("Content-type: image/jpeg"); + header('Expires: ' . datetime_convert('UTC','UTC', 'now + 30 minutes', 'D, d M Y H:i:s' . ' GMT')); + header('Expires: ' . datetime_convert('UTC','UTC', 'now + 30 minutes', 'D, d M Y H:i:s' . ' GMT')); + header("Cache-Control: max-age=3600, must-revalidate"); echo $data; killme(); return; //NOTREACHED |