aboutsummaryrefslogtreecommitdiffstats
path: root/mod/photo.php
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2011-10-05 20:59:21 +0200
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2011-10-05 20:59:21 +0200
commit90870d4872dbc8ff408183a79fd005b905aa86c2 (patch)
treecdd66eea79a7638b520576d381d08368b05a19c1 /mod/photo.php
parente88a8564c849b199ca552fa307f385b422d5d00a (diff)
parent5cb0b0ed4591a578720e0c985974db2d95f3810a (diff)
downloadvolse-hubzilla-90870d4872dbc8ff408183a79fd005b905aa86c2.tar.gz
volse-hubzilla-90870d4872dbc8ff408183a79fd005b905aa86c2.tar.bz2
volse-hubzilla-90870d4872dbc8ff408183a79fd005b905aa86c2.zip
Merge branch 'master' of git://github.com/friendika/Free-Friendika
Diffstat (limited to 'mod/photo.php')
-rw-r--r--mod/photo.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/mod/photo.php b/mod/photo.php
index 3994620f8..a5a5a1dc1 100644
--- a/mod/photo.php
+++ b/mod/photo.php
@@ -128,7 +128,14 @@ function photo_init(&$a) {
}
}
+ if(function_exists('header_remove')) {
+ header_remove('Pragma');
+ header_remove('pragma');
+ }
+
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