diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-08-25 09:25:37 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-08-25 09:25:37 -0700 |
commit | 9e4ef67fa35a301ba23a8f6107e12b7db33f83c8 (patch) | |
tree | b4d7c9d42ba9e8bf5229d0788e702d94c0181665 /httemplate/misc | |
parent | e6796fcb87b17c937eacfacacd933da7bc5f0996 (diff) |
warning about param in list context (in a substitution?)
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/void-cust_bill.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/void-cust_bill.html b/httemplate/misc/void-cust_bill.html index 1608fd051..39b071229 100644 --- a/httemplate/misc/void-cust_bill.html +++ b/httemplate/misc/void-cust_bill.html @@ -14,7 +14,7 @@ <% ntable("#cccccc", 2) %> <TR> <TD ALIGN="right">Reason</TD> - <TD><INPUT TYPE="text" NAME="reason" VALUE="<% $cgi->param('reason') |h %>"></TD> + <TD><INPUT TYPE="text" NAME="reason" VALUE="<% scalar($cgi->param('reason')) |h %>"></TD> </TR> </TABLE> |