diff options
| -rwxr-xr-x | httemplate/search/report_tax.cgi | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/httemplate/search/report_tax.cgi b/httemplate/search/report_tax.cgi index d17adb9aa..ed5ebef03 100755 --- a/httemplate/search/report_tax.cgi +++ b/httemplate/search/report_tax.cgi @@ -545,8 +545,9 @@ foreach (@regions) {  my $total_url_param = '';  if ( $group_op ) { -  $total_url_param = 'report_group='.uri_escape("$group_op $group_value").';'. -                     join(';', 'taxclass='.dbh->quote($_), keys %taxclasses ); +  $total_url_param = +    'report_group='.uri_escape("$group_op $group_value").';'. +    join(';', map 'taxclass='.dbh->quote($_), keys %taxclasses );  }  #ordering  | 
