X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fconfig%2Fconfig-view.cgi;h=a2e908847013205f994336f19108e9038c88a940;hb=817c1ce0e1cbcfd1f684222c66f46dd13b2d6dd7;hp=02a24adbf4c1f06369d9421b2c9222f15576cd49;hpb=14b88fec3eb275ae5339bb7ad1d72bdb333454c0;p=freeside.git diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 02a24adbf..a2e908847 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -34,11 +34,11 @@ invoice language options:
<& /elements/select.html, 'field' => 'locale', - 'options' => [ '', @locales ], + 'options' => [ '', grep { $_ ne 'en_US'} @locales ], 'labels' => { map { my %info = FS::Locales->locale_info($_); $_ => "$info{name} ($info{country})" - } @locales }, + } grep { $_ ne 'en_US' } @locales }, 'curr_value' => $locale, 'id' => 'select-locale', 'onchange' => 'changeLocale' @@ -415,8 +415,12 @@ 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 taxation invoicing notification UI API self-service + ticketing network_monitoring username password session shell BIND + telephony + ), '', 'deprecated' +); my %section_items = (); foreach my $section (@sections) {