summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Advanced.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Config/Advanced.pm')
-rw-r--r--Bugzilla/Config/Advanced.pm30
1 files changed, 11 insertions, 19 deletions
diff --git a/Bugzilla/Config/Advanced.pm b/Bugzilla/Config/Advanced.pm
index 398f02701..7b76944e1 100644
--- a/Bugzilla/Config/Advanced.pm
+++ b/Bugzilla/Config/Advanced.pm
@@ -17,25 +17,17 @@ use Bugzilla::Util qw(validate_ip);
our $sortkey = 1700;
use constant get_param_list => (
- {
- name => 'proxy_url',
- type => 't',
- default => ''
- },
-
- {
- name => 'strict_transport_security',
- type => 's',
- choices => [ 'off', 'this_domain_only', 'include_subdomains' ],
- default => 'off',
- checker => \&check_multi
- },
-
- {
- name => 'disable_bug_updates',
- type => 'b',
- default => 0
- },
+ {name => 'proxy_url', type => 't', default => ''},
+
+ {
+ name => 'strict_transport_security',
+ type => 's',
+ choices => ['off', 'this_domain_only', 'include_subdomains'],
+ default => 'off',
+ checker => \&check_multi
+ },
+
+ {name => 'disable_bug_updates', type => 'b', default => 0},
);
1;