diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-08-25 09:32:08 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-08-25 09:32:08 -0700 |
commit | 147d171069905e80a47442ee4b35515534989909 (patch) | |
tree | 0c22944a65edc080ab119215c0bff78d286555b8 | |
parent | 48daaf7dd667869e033ce9463829cbfec47fab4e (diff) |
param in list context
-rwxr-xr-x | httemplate/misc/process/void-cust_bill.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/process/void-cust_bill.html b/httemplate/misc/process/void-cust_bill.html index accee27fd..7773b0ba9 100755 --- a/httemplate/misc/process/void-cust_bill.html +++ b/httemplate/misc/process/void-cust_bill.html @@ -21,6 +21,6 @@ my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum}); my $custnum = $cust_bill->custnum; -my $error = $cust_bill->void( $cgi->param('reason') ); +my $error = $cust_bill->void( scalar($cgi->param('reason')) ); </%init> |