diff options
author | ivan <ivan> | 2004-06-11 14:25:36 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-06-11 14:25:36 +0000 |
commit | 1fe8df8a5f82fd8d9ec016c9ade222a8eb632ce2 (patch) | |
tree | e42236de1116b4f8854dc2e162aa309e75f47d81 | |
parent | f9301849687aaf7449738d7371b2c500f109c6e1 (diff) |
tax report fix sort
-rwxr-xr-x | httemplate/search/report_tax.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/report_tax.cgi b/httemplate/search/report_tax.cgi index 4f3ba1a17..2e7bbcf9a 100755 --- a/httemplate/search/report_tax.cgi +++ b/httemplate/search/report_tax.cgi @@ -81,7 +81,7 @@ foreach my $r ( qsearch('cust_main_county', {}) ) { #ordering my @regions = map $regions{$_}, - sort { ( $b eq $out cmp $a eq $out ) || ( $a cmp $b ) } + sort { ( ($b eq $out) cmp ($a eq $out) ) || ($a cmp $b) } keys %regions; push @regions, { |