diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-10 16:54:36 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-10 16:54:36 -0700 |
commit | 06bdf8a4cfe9087573494c0b782a33d1e28ac043 (patch) | |
tree | 9ab3965bd0f0dc790bc30bee12b939e3866c82e9 /mod/photo.php | |
parent | 04e65823d70d448400d3be7f0b3244ea8658834d (diff) | |
download | volse-hubzilla-06bdf8a4cfe9087573494c0b782a33d1e28ac043.tar.gz volse-hubzilla-06bdf8a4cfe9087573494c0b782a33d1e28ac043.tar.bz2 volse-hubzilla-06bdf8a4cfe9087573494c0b782a33d1e28ac043.zip |
atom auto-discover, fix image preloading in ajax
Diffstat (limited to 'mod/photo.php')
-rw-r--r-- | mod/photo.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mod/photo.php b/mod/photo.php index 6174b10ab..653ca81c2 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -112,9 +112,8 @@ 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"); + header('Expires: ' . datetime_convert('UTC','UTC', 'now + 3 months', 'D, d M Y H:i:s' . ' GMT')); +// header("Cache-Control: max-age=36000, only-if-cached"); echo $data; killme(); return; //NOTREACHED |