diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-09-17 17:52:48 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-09-17 17:56:09 +0200 |
commit | 9c310f789ffad41af46b36128f197176dc1f12e3 (patch) | |
tree | 1a0ab9e2b3b9c455145715bb7f4a907e15e858d8 /phpBB/includes/functions.php | |
parent | ad596f43909983ab5c61ee9b15838119081d9a2c (diff) | |
download | forums-9c310f789ffad41af46b36128f197176dc1f12e3.tar forums-9c310f789ffad41af46b36128f197176dc1f12e3.tar.gz forums-9c310f789ffad41af46b36128f197176dc1f12e3.tar.bz2 forums-9c310f789ffad41af46b36128f197176dc1f12e3.tar.xz forums-9c310f789ffad41af46b36128f197176dc1f12e3.zip |
[ticket/12858] Rename tz_ prefixed block variables to timezone_ prefix
PHPBB3-12858
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 0678ea7fda..d280ab0f37 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1095,13 +1095,13 @@ function phpbb_timezone_select($template, $user, $default = '', $truncate = fals $tz_select .= ($opt_group) ? '</optgroup>' : ''; $tz_select .= '<optgroup label="' . $user->lang(array('timezones', 'UTC_OFFSET_CURRENT'), $timezone['offset'], $timezone['current']) . '">'; $opt_group = $timezone['offset']; - $template->assign_block_vars('tz_select', array( + $template->assign_block_vars('timezone_select', array( 'LABEL' => $user->lang(array('timezones', 'UTC_OFFSET_CURRENT'), $timezone['offset'], $timezone['current']), 'VALUE' => $key . ' - ' . $timezone['current'], )); $selected = (!empty($default_offset) && strpos($key, $default_offset) !== false) ? ' selected="selected"' : ''; - $template->assign_block_vars('tz_date', array( + $template->assign_block_vars('timezone_date', array( 'VALUE' => $key . ' - ' . $timezone['current'], 'SELECTED' => !empty($selected), 'TITLE' => $user->lang(array('timezones', 'UTC_OFFSET_CURRENT'), $timezone['offset'], $timezone['current']), @@ -1113,17 +1113,17 @@ function phpbb_timezone_select($template, $user, $default = '', $truncate = fals { $label = $user->lang['timezones'][$label]; } - $title = $timezone['offset'] . ' - ' . $label; + $title = $user->lang(array('timezones', 'UTC_OFFSET_CURRENT'), $timezone['offset'], $label); if ($truncate) { $label = truncate_string($label, 50, 255, false, '...'); } - // Also generate tz_select for backwards compatibility + // Also generate timezone_select for backwards compatibility $selected = ($timezone['tz'] === $default) ? ' selected="selected"' : ''; $tz_select .= '<option title="' . $title . '" value="' . $timezone['tz'] . '"' . $selected . '>' . $label . '</option>'; - $template->assign_block_vars('tz_select.tz_options', array( + $template->assign_block_vars('timezone_select.timezone_options', array( 'TITLE' => $title, 'VALUE' => $timezone['tz'], 'SELECTED' => !empty($selected), |