diff options
author | Friendika <info@friendika.com> | 2011-09-30 17:47:33 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-30 17:47:33 -0700 |
commit | 0508ccf50fc6f64af40ad97e3a573a0d489630f2 (patch) | |
tree | d33e1c1e85fbcb22d375f6a005213e85f2268191 /mod/photo.php | |
parent | 30b7c689292b3a5d06fb9c52a369b53ecb05e57f (diff) | |
download | volse-hubzilla-0508ccf50fc6f64af40ad97e3a573a0d489630f2.tar.gz volse-hubzilla-0508ccf50fc6f64af40ad97e3a573a0d489630f2.tar.bz2 volse-hubzilla-0508ccf50fc6f64af40ad97e3a573a0d489630f2.zip |
restore photo cache
Diffstat (limited to 'mod/photo.php')
-rw-r--r-- | mod/photo.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/photo.php b/mod/photo.php index 3994620f8..fcc75a513 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -129,6 +129,8 @@ function photo_init(&$a) { } header("Content-type: image/jpeg"); + header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT"; + header("Cache-Control: max-age=" . (3600*24)); echo $data; killme(); // NOTREACHED |