diff options
author | lpsolit%gmail.com <> | 2006-11-28 03:31:36 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-11-28 03:31:36 +0100 |
commit | cd2b334fb47a995e0d11041e8960130a413fd222 (patch) | |
tree | 1955b37775e68e156d480956438b8cc66b56b2c4 /Bugzilla | |
parent | 563ef374a364affe51239bec9a9bbd94b5b2e4f7 (diff) | |
download | bugzilla-cd2b334fb47a995e0d11041e8960130a413fd222.tar.gz bugzilla-cd2b334fb47a995e0d11041e8960130a413fd222.tar.xz |
Bug 361809: GMT, UT, UTC and WET cannot be used as timezone - Patch by victory(_RSZ_) <bmo2007@rsz.jp> r=LpSolit a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Config/Common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm index a609936c0..0d6db5257 100644 --- a/Bugzilla/Config/Common.pm +++ b/Bugzilla/Config/Common.pm @@ -326,7 +326,7 @@ sub check_notification { sub check_timezone { my $tz = shift; - unless (tz_offset($tz)) { + unless (defined(tz_offset($tz))) { return "must be empty or a legal timezone name, such as PDT or JST"; } return ""; |