aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--boot.php2
-rw-r--r--mod/photo.php2
2 files changed, 3 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 85b571c82..59eeb4643 100644
--- a/boot.php
+++ b/boot.php
@@ -8,7 +8,7 @@ require_once("include/pgettext.php");
require_once('include/nav.php');
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
-define ( 'FRIENDIKA_VERSION', '2.3.1119' );
+define ( 'FRIENDIKA_VERSION', '2.3.1120' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1093 );
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