aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Config/General.pm')
-rw-r--r--Bugzilla/Config/General.pm43
1 files changed, 16 insertions, 27 deletions
diff --git a/Bugzilla/Config/General.pm b/Bugzilla/Config/General.pm
index 380680590..322275aa0 100644
--- a/Bugzilla/Config/General.pm
+++ b/Bugzilla/Config/General.pm
@@ -17,39 +17,28 @@ our $sortkey = 150;
use constant get_param_list => (
{
- name => 'maintainer',
- type => 't',
- no_reset => '1',
- default => '',
- checker => \&check_email
+ name => 'maintainer',
+ type => 't',
+ no_reset => '1',
+ default => '',
+ checker => \&check_email
},
- {
- name => 'utf8',
- type => 'b',
- default => '0',
- checker => \&check_utf8
- },
+ {name => 'utf8', type => 'b', default => '0', checker => \&check_utf8},
- {
- name => 'shutdownhtml',
- type => 'l',
- default => ''
- },
+ {name => 'shutdownhtml', type => 'l', default => ''},
- {
- name => 'announcehtml',
- type => 'l',
- default => ''
- },
+ {name => 'announcehtml', type => 'l', default => ''},
{
- name => 'upgrade_notification',
- type => 's',
- choices => ['development_snapshot', 'latest_stable_release',
- 'stable_branch_release', 'disabled'],
- default => 'latest_stable_release',
- checker => \&check_notification
+ name => 'upgrade_notification',
+ type => 's',
+ choices => [
+ 'development_snapshot', 'latest_stable_release',
+ 'stable_branch_release', 'disabled'
+ ],
+ default => 'latest_stable_release',
+ checker => \&check_notification
},
);