From c8cf2b58bae632b6801337971323d37cf9f5a0f0 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Wed, 21 Oct 2015 03:00:37 +0000 Subject: Bug 1209599 - group general preferences by category --- Bugzilla/Install.pm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'Bugzilla/Install.pm') diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index 9950b222a..715251154 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -281,13 +281,8 @@ sub update_settings { } my @settings = @{SETTINGS()}; - foreach my $setting (@settings) { - add_setting($setting->{name}, - $setting->{options}, - $setting->{default}, - $setting->{subclass}, - undef, - !$any_settings); + foreach my $params (@settings) { + add_setting($params); } } -- cgit v1.2.3-24-g4f1b