mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[feature/new-tz-handling] Remove case mangling, the identifiers are correct.
PHPBB3-9558
This commit is contained in:
parent
0f320a6c48
commit
190b019fa2
1 changed files with 2 additions and 2 deletions
|
@ -1098,9 +1098,9 @@ function tz_select($default = '', $truncate = false)
|
||||||
{
|
{
|
||||||
// No label, we'll figure one out
|
// No label, we'll figure one out
|
||||||
// @todo rtl languages?
|
// @todo rtl languages?
|
||||||
$bits = explode('/', strtolower(str_replace('_', ' ', $timezone)));
|
$bits = explode('/', str_replace('_', ' ', $timezone));
|
||||||
|
|
||||||
$title = $label = ucwords(implode(' - ', $bits));
|
$title = $label = implode(' - ', $bits);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($truncate)
|
if ($truncate)
|
||||||
|
|
Loading…
Add table
Reference in a new issue