X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fconfig%2Fconfig.cgi;h=50b3eba85dd3c47323d2b2c8dcf501f7f3c78f22;hb=7b0bbc4117a7959b9f7b7b2cf999b8188ba34160;hp=a4f9890a5e14b9b77915be14693d549f2ae51a6d;hpb=f3c4966ed1f6ec3db7accd6dcdd3a5a3821d72a7;p=freeside.git diff --git a/httemplate/config/config.cgi b/httemplate/config/config.cgi index a4f9890a5..50b3eba85 100644 --- a/httemplate/config/config.cgi +++ b/httemplate/config/config.cgi @@ -156,7 +156,9 @@ Setting <% $key %> % } % my %options = &{$config_item->options_sub}; -% my @options = sort { $a <=> $b } keys %options; +% my @options = keys %options; +% my $sortsub = $config_item->sort_sub || sub { $a <=> $b }; +% @options = sort $sortsub @options; % my %saw; % foreach my $value ( @options ) { % local($^W)=0; next if $saw{$value}++; @@ -304,7 +306,6 @@ Setting <% $key %> % % my %opt = ( 'element_name' => "$key$n", % 'empty_label' => ' ', -% 'showdisabled' => 1, % ); % if ( $config_item->multiple ) { % $opt{'multiple'} = 1 if $config_item->multiple;