From f7a9c20e1d593de96ea3f31ffdd6fc76067e9926 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 5 Apr 2013 10:23:58 +0000 Subject: [PATCH] fixed typo in cache-control header, causing pages not getting cached, if clients used it in favor of Expires header --- phpgwapi/inc/class.egw_session.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_session.inc.php b/phpgwapi/inc/class.egw_session.inc.php index bca2a1d85a..e2b5ac8c11 100644 --- a/phpgwapi/inc/class.egw_session.inc.php +++ b/phpgwapi/inc/class.egw_session.inc.php @@ -1679,7 +1679,7 @@ class egw_session } else { - header('Cache-Control: public, maxage='.$expire); + header('Cache-Control: public, max-age='.$expire); header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$expire) . ' GMT'); // remove Pragma header, might be set by old header if (function_exists('header_remove')) // PHP 5.3+