diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-03-05 16:06:40 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-03-05 16:06:40 -0800 |
commit | 16c302199c7544f6842978d3a97d154e7a9e225f (patch) | |
tree | 39bbdb0ab1fdeb85f422c1af706134c5ecef0a56 /httemplate | |
parent | b03c4d3acae9c318fd3d93963955fb027862ccb3 (diff) |
add back-office xmlrpc api and daemon, RT#27958
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/config/config-view.cgi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 02a24adbf..1c9e719c5 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -415,8 +415,10 @@ 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 self-service ticketing network_monitoring username password session shell BIND telephony ); -push @sections, '', '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) { |