aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 74654dd197..c530328658 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -384,7 +384,7 @@ function tz_select($default = '')
{
if (is_numeric($offset))
{
- $selected = ($offset === $default) ? ' selected="selected"' : '';
+ $selected = ($offset == $default) ? ' selected="selected"' : '';
$tz_select .= '<option value="' . $offset . '"' . $selected . '>' . $zone . '</option>';
}
}