diff options
author | alecpl <alec@alec.pl> | 2012-04-19 07:02:14 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-04-19 07:02:14 +0000 |
commit | 6dc7ce5a0692bf7433a5ab2221457fda4893502a (patch) | |
tree | a8879c057e4f91b64eb136521f30af3d053c52de /program/include/rcube_shared.inc | |
parent | 753bf7707be210098fa2204cc230b520beeea2eb (diff) |
- Fix incorrect cache ttl used in get_cache_engine() (#1488447)
Diffstat (limited to 'program/include/rcube_shared.inc')
-rw-r--r-- | program/include/rcube_shared.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc index 9340091bb..ab4b77bae 100644 --- a/program/include/rcube_shared.inc +++ b/program/include/rcube_shared.inc @@ -66,7 +66,7 @@ function send_future_expire_header($offset=2600000) if (headers_sent()) return; - header("Expires: ".gmdate("D, d M Y H:i:s", mktime()+$offset)." GMT"); + header("Expires: ".gmdate("D, d M Y H:i:s", time()+$offset)." GMT"); header("Cache-Control: max-age=$offset"); header("Pragma: "); } @@ -299,7 +299,7 @@ function get_offset_time($offset_str, $factor=1) $unit = 's'; } - $ts = mktime(); + $ts = time(); switch ($unit) { case 'w': |