diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-06-20 14:34:35 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-06-20 14:34:35 +0200 |
commit | 82e195ac683f6604aee9862233ffcb4f58af64b0 (patch) | |
tree | 908d47cf69c9f12557a7e2d21577d3395e6b1612 /phpBB/includes/functions.php | |
parent | 902a79bfdabb2c459f2385cff80b5fa38099d2f7 (diff) | |
download | forums-82e195ac683f6604aee9862233ffcb4f58af64b0.tar forums-82e195ac683f6604aee9862233ffcb4f58af64b0.tar.gz forums-82e195ac683f6604aee9862233ffcb4f58af64b0.tar.bz2 forums-82e195ac683f6604aee9862233ffcb4f58af64b0.tar.xz forums-82e195ac683f6604aee9862233ffcb4f58af64b0.zip |
[feature/new-tz-handling] Fix code and doc layout
PHPBB3-9558
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 53511291b5..98a08ea4d3 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1111,10 +1111,12 @@ function phpbb_tz_select_compare($a, $b) if ($a_name == $b_name) { return 0; - } else if ($a_name == 'UTC') + } + else if ($a_name == 'UTC') { return -1; - } else if ($b_name == 'UTC') + } + else if ($b_name == 'UTC') { return 1; } |