diff options
author | Chris Smith <toonarmy@phpbb.com> | 2009-07-18 10:02:06 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2009-07-18 10:02:06 +0000 |
commit | 0fe2b41cfca76b51eb14cc687f2a978b0f4a4da0 (patch) | |
tree | 50ffec0436146b71eab1e613beb9abc2e3e48d84 /phpBB | |
parent | ba08191a7027969eabaa03c4369f8d9bae4fd7a6 (diff) | |
download | forums-0fe2b41cfca76b51eb14cc687f2a978b0f4a4da0.tar forums-0fe2b41cfca76b51eb14cc687f2a978b0f4a4da0.tar.gz forums-0fe2b41cfca76b51eb14cc687f2a978b0f4a4da0.tar.bz2 forums-0fe2b41cfca76b51eb14cc687f2a978b0f4a4da0.tar.xz forums-0fe2b41cfca76b51eb14cc687f2a978b0f4a4da0.zip |
#42925
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9777 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 5b0a2340b5..d1a560f96d 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1164,7 +1164,7 @@ function tz_select($default = '', $truncate = false) if (is_numeric($offset)) { $selected = ($offset == $default) ? ' selected="selected"' : ''; - $tz_select .= '<option title="'.$zone.'" value="' . $offset . '"' . $selected . '>' . $zone_trunc . '</option>'; + $tz_select .= '<option title="' . $zone . '" value="' . $offset . '"' . $selected . '>' . $zone_trunc . '</option>'; } } |