diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-10-23 16:18:57 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-10-23 16:18:57 -0700 |
commit | 13537d3d0bcdacb1550b5b59fe08158e75e9443b (patch) | |
tree | 8aef86c86ef44919b772242fbefb8f1d866a0871 | |
parent | 80c2d997c5c983344c530ecbb46f94f1c299b35f (diff) |
possibe problematic param in list context warning
-rw-r--r-- | httemplate/elements/cust_payby.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/cust_payby.html b/httemplate/elements/cust_payby.html index 0eb3e3ebe..6e2610bbe 100644 --- a/httemplate/elements/cust_payby.html +++ b/httemplate/elements/cust_payby.html @@ -67,7 +67,7 @@ ID = "<%$id%>_paycvv" SIZE = 2 MAXLENGTH = 4 - VALUE = "<% $cgi->param($name.'_paycvv') %>" + VALUE = "<% scalar($cgi->param($name.'_paycvv')) %>" onChange = "<% $onchange %>" > <BR><FONT SIZE="-1"><% mt('CVV2') |h %> (<A HREF="javascript:void(0);" onClick="overlib( OLiframeContent('<%$p%>docs/cvv2.html', 480, 275, 'cvv2_popup' ), CAPTION, 'CVV2 Help', STICKY, AUTOSTATUSCAP, CLOSECLICK, DRAGGABLE ); return false;"><% mt('help') |h %></A>)</FONT> |