diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-06-19 19:26:57 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-06-19 19:26:57 +0200 |
commit | c7d32a1b2d300618278cb8178f9dfefa93804167 (patch) | |
tree | f0464a396a2ed67bad6e52f762b9e750b2356f00 /phpBB/includes/functions.php | |
parent | a613caab093c3b354a7121c7989c9687d12bcdb4 (diff) | |
download | forums-c7d32a1b2d300618278cb8178f9dfefa93804167.tar forums-c7d32a1b2d300618278cb8178f9dfefa93804167.tar.gz forums-c7d32a1b2d300618278cb8178f9dfefa93804167.tar.bz2 forums-c7d32a1b2d300618278cb8178f9dfefa93804167.tar.xz forums-c7d32a1b2d300618278cb8178f9dfefa93804167.zip |
[feature/new-tz-handling] Prefix function with phpbb_
PHPBB3-9558
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 618af7ee00..53511291b5 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1093,7 +1093,7 @@ function phpbb_format_timezone_offset($tz_offset) * Arranges them in increasing order by timezone offset. * Places UTC before other timezones in the same offset. */ -function tz_select_compare($a, $b) +function phpbb_tz_select_compare($a, $b) { $a_sign = $a[3]; $b_sign = $b[3]; @@ -1178,7 +1178,7 @@ function tz_select($default = '', $truncate = false, $return_tzs_only = true) } unset($unsorted_timezones); - uksort($timezones, 'tz_select_compare'); + uksort($timezones, 'phpbb_tz_select_compare'); } $tz_select = $tz_dates = $opt_group = ''; |