diff options
author | jeff <jeff> | 2008-09-16 15:58:33 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-09-16 15:58:33 +0000 |
commit | 3ad0ab7503933b04bd6ee8e59b07780378f92a25 (patch) | |
tree | 87f79338fd51d1dff3f38779dbad50a334112f9c | |
parent | eef578f09ac0198a48287a0c85d367fcd5f17459 (diff) |
minor initialization issue
-rwxr-xr-x | httemplate/search/report_tax.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/report_tax.cgi b/httemplate/search/report_tax.cgi index 3d37c47e4..cdc148fb0 100755 --- a/httemplate/search/report_tax.cgi +++ b/httemplate/search/report_tax.cgi @@ -288,8 +288,8 @@ if ( $conf->exists('tax-ship_address') ) { } -my($total, $tot_taxable, $owed, $tax) = ( 0, 0, 0, 0, 0 ); -my( $exempt_cust, $exempt_pkg, $exempt_monthly ) = ( 0, 0 ); +my($total, $tot_taxable, $owed, $tax) = ( 0, 0, 0, 0 ); +my( $exempt_cust, $exempt_pkg, $exempt_monthly ) = ( 0, 0, 0 ); my $out = 'Out of taxable region(s)'; my %regions = (); foreach my $r (qsearch('cust_main_county', {}, '', $gotcust) ) { |