diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-08-25 09:25:38 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-08-25 09:25:38 -0700 |
commit | b365d15b186505b76fd317af73721b8f54c3c6a9 (patch) | |
tree | 56d53c875ab2be755525bc9fbe67771b94cf6459 | |
parent | a7e9c25b21e6401028cd8dc60eb3c8648c1629ec (diff) |
warning about param in list context (in a substitution?)
-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> |