summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-09-25 14:42:44 -0700
committerIvan Kohler <ivan@freeside.biz>2016-09-25 14:42:44 -0700
commit26484e261d7a6bd833d041b417b60e63db19edf7 (patch)
tree318c28fa676dce3699aee8362e6de3812e7e0139 /httemplate/elements
parentdb9355be0f00722df45b3cecf9b55c43ede4ae3f (diff)
scalar cgi param
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/cust_payby.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/elements/cust_payby.html b/httemplate/elements/cust_payby.html
index f30d18557..1d789a47b 100644
--- a/httemplate/elements/cust_payby.html
+++ b/httemplate/elements/cust_payby.html
@@ -180,11 +180,11 @@
<& /elements/select-state.html,
'prefix' => $name. '_pay',
'empty' => emt('(choose)'),
- 'state' => $cgi->param($name.'_paystate')
- || $cust_payby->paystate,
+ 'state' => ( scalar($cgi->param($name.'_paystate'))
+ || $cust_payby->paystate ),
#was cust_main->country in 3.x, but this will do until/unlesss
# someone needs to track foreign bank states
- 'country' => scalar($conf->config('countrydefault')) || 'US',
+ 'country' => ( scalar($conf->config('countrydefault')) || 'US' ),
&>
<BR><FONT SIZE="-1"><% mt('Bank state') |h %></FONT>
</TD>