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

[ticket/17100] Move timezone select HTML from PHP file

PHPBB3-17100
This commit is contained in:
Marc Alexander
2022-06-01 21:08:12 +02:00
parent 540097eed7
commit 015472ab91
10 changed files with 113 additions and 86 deletions

View File

@@ -111,9 +111,9 @@ function phpbb_clean_path($path)
*/
function tz_select($default = '', $truncate = false)
{
global $template, $user;
global $user;
return phpbb_timezone_select($template, $user, $default, $truncate);
return phpbb_timezone_select($user, $default, $truncate);
}
/**