summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Util.pm
diff options
context:
space:
mode:
authorreed%reedloden.com <>2010-01-05 08:05:59 +0100
committerreed%reedloden.com <>2010-01-05 08:05:59 +0100
commitf170f68df81a531091578baca25c789076a3c467 (patch)
treef32a2ae8d30257d420167cc9dc5a7b1495bcac2d /Bugzilla/Util.pm
parent0c266590b454f88f55fb4b39a5bce5532ca5baa0 (diff)
downloadbugzilla-f170f68df81a531091578baca25c789076a3c467.tar.gz
bugzilla-f170f68df81a531091578baca25c789076a3c467.tar.xz
Bug 534587 - "Bugmail uses the timezone of the changee instead of the user receiving the mail" [p=reed r=mkanat a=mkanat]
Diffstat (limited to 'Bugzilla/Util.pm')
-rw-r--r--Bugzilla/Util.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index ca2506ffa..437979c85 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -413,8 +413,8 @@ sub wrap_hard {
sub format_time {
my ($date, $format, $timezone) = @_;
- # If $format is undefined, try to guess the correct date format.
- if (!defined($format)) {
+ # If $format is not set, try to guess the correct date format.
+ if (!$format) {
if (!ref $date
&& $date =~ /^(\d{4})[-\.](\d{2})[-\.](\d{2}) (\d{2}):(\d{2})(:(\d{2}))?$/)
{