summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Reports.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Config/Reports.pm')
-rw-r--r--Bugzilla/Config/Reports.pm28
1 files changed, 10 insertions, 18 deletions
diff --git a/Bugzilla/Config/Reports.pm b/Bugzilla/Config/Reports.pm
index 26c5aad57..dfb6db7a3 100644
--- a/Bugzilla/Config/Reports.pm
+++ b/Bugzilla/Config/Reports.pm
@@ -16,22 +16,14 @@ use Bugzilla::Config::Common;
our $sortkey = 1100;
sub get_param_list {
- my $class = shift;
- my @param_list = (
- {
- name => 'report_secbugs_active',
- type => 'b',
- default => 1,
- },
- {
- name => 'report_secbugs_emails',
- type => 't',
- default => 'bugzilla-admin@mozilla.org'
- },
- {
- name => 'report_secbugs_products',
- type => 'l',
- default => '[]'
- },
- );
+ my $class = shift;
+ my @param_list = (
+ {name => 'report_secbugs_active', type => 'b', default => 1,},
+ {
+ name => 'report_secbugs_emails',
+ type => 't',
+ default => 'bugzilla-admin@mozilla.org'
+ },
+ {name => 'report_secbugs_products', type => 'l', default => '[]'},
+ );
}