aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_acp.php
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2014-09-17 18:38:21 +0200
committerJakub Senko <jakubsenko@gmail.com>2014-09-17 18:38:21 +0200
commit3885ac90f18b86fa835985875fa651526e13b832 (patch)
tree65aacfc953c69c2137e0a8eaaa783da52215a673 /phpBB/includes/functions_acp.php
parent3d637fea98480258db176ddd2c62b9e0b81a0ef4 (diff)
downloadforums-3885ac90f18b86fa835985875fa651526e13b832.tar
forums-3885ac90f18b86fa835985875fa651526e13b832.tar.gz
forums-3885ac90f18b86fa835985875fa651526e13b832.tar.bz2
forums-3885ac90f18b86fa835985875fa651526e13b832.tar.xz
forums-3885ac90f18b86fa835985875fa651526e13b832.zip
[ticket/13044] Move GMT out of gmdate in functions_acp
PHPBB3-13044
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r--phpBB/includes/functions_acp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index 85225e761a..da8d756db9 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -112,7 +112,7 @@ function adm_page_header($page_title)
// application/xhtml+xml not used because of IE
'Content-type' => 'text/html; charset=UTF-8',
'Cache-Control' => 'private, no-cache="set-cookie"',
- 'Expires' => gmdate('D, d M Y H:i:s', time() . ' GMT'),
+ 'Expires' => gmdate('D, d M Y H:i:s', time()) . ' GMT',
'Pragma' => 'no-cache',
);