aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-05-10 17:19:27 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-05-10 17:19:27 +0000
commit549537b9d570ac70c16f4560b9efbafa293834db (patch)
treed3f9b2b1b69735cee2062b52b9f6c026182874e9 /phpBB/includes/functions.php
parentdb56a5580883c5665bb93ca48f128ae05513c291 (diff)
downloadforums-549537b9d570ac70c16f4560b9efbafa293834db.tar
forums-549537b9d570ac70c16f4560b9efbafa293834db.tar.gz
forums-549537b9d570ac70c16f4560b9efbafa293834db.tar.bz2
forums-549537b9d570ac70c16f4560b9efbafa293834db.tar.xz
forums-549537b9d570ac70c16f4560b9efbafa293834db.zip
Returned to instantiation of ucp object ... perhaps this approach is better? Altered basic info for ucp_modules, updated editor to allow alternative form and textarea names ... still lots of fudginess, hhhmmmm fudge, uuuuugggghhh
git-svn-id: file:///svn/phpbb/trunk@4003 89ea8834-ac86-4346-8a33-228a782c2dd0
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>';
}
}