From: Tom Dickson Date: Tue, 5 Apr 2011 00:07:21 +0000 (-0700) Subject: Bug 646209: Offer "UTC" as a timezone option in General Preferences X-Git-Tag: bugzilla-4.1.2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dc6cbf7cf3cea757670c9bed819652f356d1798;p=thirdparty%2Fbugzilla.git Bug 646209: Offer "UTC" as a timezone option in General Preferences r=mkanat, a=mkanat --- diff --git a/Bugzilla/User/Setting/Timezone.pm b/Bugzilla/User/Setting/Timezone.pm index d75b1113b6..27a90e341f 100644 --- a/Bugzilla/User/Setting/Timezone.pm +++ b/Bugzilla/User/Setting/Timezone.pm @@ -39,6 +39,7 @@ sub legal_values { # Append 'local' to the list, which will use the timezone # given by the server. push(@timezones, 'local'); + push(@timezones, 'UTC'); return $self->{'legal_values'} = \@timezones; }