diff options
author | Tom Dickson <bugzilla@bombcar.com> | 2011-04-05 02:07:21 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-04-05 02:07:21 +0200 |
commit | 9dc6cbf7cf3cea757670c9bed819652f356d1798 (patch) | |
tree | 0b0656abc6b810aaefda5254d4ed1582cbad7c6d /Bugzilla/User | |
parent | 46cb9df892b0032a8a5fe56f7dfd3d0df8c88e4d (diff) | |
download | bugzilla-9dc6cbf7cf3cea757670c9bed819652f356d1798.tar.gz bugzilla-9dc6cbf7cf3cea757670c9bed819652f356d1798.tar.xz |
Bug 646209: Offer "UTC" as a timezone option in General Preferences
r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla/User')
-rw-r--r-- | Bugzilla/User/Setting/Timezone.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/User/Setting/Timezone.pm b/Bugzilla/User/Setting/Timezone.pm index d75b1113b..27a90e341 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; } |