Skip to content

Commit

Permalink
Remove hard-coded duplicate UTC timezone option
Browse files Browse the repository at this point in the history
It is pretty surely included in `DateTime::TimeZone->all_names`
already, see https://metacpan.org/pod/DateTime::TimeZone::UTC
  • Loading branch information
yvanzo committed Nov 17, 2018
1 parent 4c444c7 commit b6f48eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MusicBrainz/Server/Form/User/Preferences.pm
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ sub options_datetime_format

sub options_timezone
{
my @timezones = ('UTC', DateTime::TimeZone->all_names);
my @timezones = DateTime::TimeZone->all_names;

my @options;
foreach my $timezone (sort @timezones) {
Expand Down

0 comments on commit b6f48eb

Please sign in to comment.