From 94187506c93e02e93de985680b8486f8c1493c89 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 2 May 2001 00:33:00 +0000 Subject: [PATCH] Remove extra -ve from being printed for timezones behind GMT git-svn-id: file:///svn/phpbb/trunk@225 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/page_header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php index b176211256..c570ddbadf 100644 --- a/phpBB/includes/page_header.php +++ b/phpBB/includes/page_header.php @@ -55,7 +55,7 @@ else // if($sys_timezone < 0) { - $s_timezone = "$l_all_times GMT - $sys_timezone $l_hours"; + $s_timezone = "$l_all_times GMT - ".(-$sys_timezone)." $l_hours"; } else if($sys_timezone == 0) {