X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fconfig%2Fconfig-view.cgi;h=c1e3dc6f0830aa98f3833fbef0a1a2db50317733;hb=126c1277e5d23308f85b6ab284a75151a39ed39e;hp=02acd5853281407a51bd4fb313365c98ec5c2c8c;hpb=46c47719488fc280f41ab863e7a20b757b8dee6a;p=freeside.git diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 02acd5853..c1e3dc6f0 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' @@ -211,7 +211,7 @@ invoice language options: % } elsif ( $type eq 'checkbox' ) { - YES' : 'ff0000">NO' %> + YES' : 'ff0000">NO' %> % } elsif ( $type eq 'select' && $i->select_hash ) { @@ -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 important billing taxation invoicing quotations notification UI + API self-service ticketing network_monitoring username password session + shell BIND telephony + ), '', 'deprecated' +); my %section_items = (); foreach my $section (@sections) {