diff options
author | Mark Wells <mark@freeside.biz> | 2014-03-11 15:40:44 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-03-12 14:06:25 -0700 |
commit | 5daa6b776da674c41a04a93bd7f7e8568829409b (patch) | |
tree | 5a9281ea53a369c1d0a90e176e2611e2f4796d73 | |
parent | 235d99a60f1ec1a68afcd4614005352ce0f8b89f (diff) |
restore Unclassified and Deprecated sections to config, from #27958
-rw-r--r-- | httemplate/config/config-view.cgi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 1c9e719c5..a52c1e97a 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -415,10 +415,11 @@ my @config_items = grep { !defined($locale) or $_->per_locale } my @deleteable = qw( invoice_latexreturnaddress invoice_htmlreturnaddress ); my %deleteable = map { $_ => 1 } @deleteable; -my @sections = qw( - required billing invoicing notification UI API self-service ticketing - network_monitoring username password session shell BIND telephony -), '', 'deprecated'; +my @sections = (qw( + required billing invoicing notification UI API self-service ticketing + network_monitoring username password session shell BIND telephony + ), '', 'deprecated' +); my %section_items = (); foreach my $section (@sections) { |