1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/new-tz-handling] Fix code and doc layout

PHPBB3-9558
This commit is contained in:
Joas Schilling
2012-06-20 14:34:35 +02:00
parent 902a79bfda
commit 82e195ac68
2 changed files with 8 additions and 4 deletions

View File

@@ -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;
}