diff options
author | ivan <ivan> | 2002-10-17 11:17:48 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-10-17 11:17:48 +0000 |
commit | a8eabbd3f6f0b4be3c6108de16f4d87c47148f77 (patch) | |
tree | ea1698602519dca5e06120057a4b9d898e54eed5 | |
parent | c3b43aad56710b7a7d9efacc051646d6bf1a6427 (diff) |
another mason fix, this one from 5
-rwxr-xr-x | httemplate/search/cust_bill.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_bill.cgi b/httemplate/search/cust_bill.cgi index 586399a41..985e3dbf5 100755 --- a/httemplate/search/cust_bill.cgi +++ b/httemplate/search/cust_bill.cgi @@ -11,7 +11,7 @@ $limit .= "LIMIT $maxrecords" if $maxrecords; my $offset = $cgi->param('offset') || 0; $limit .= " OFFSET $offset" if $offset; -my $total; +my($total, $tot_amount, $tot_balance); my(@cust_bill); if ( $cgi->keywords ) { |