diff options
author | Mitch Jackson <mitch@freeside.biz> | 2018-08-26 17:07:46 -0400 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2018-08-26 18:17:37 -0400 |
commit | 7a177f82917a57bc1a0a8ef4a4608aca24773624 (patch) | |
tree | bf31c458840791fd1cab4aeff7c11d932552ddb5 /httemplate/elements/select-state.html | |
parent | 6edcac3fb4f343273195460f03a5e3c01feecb2a (diff) |
RT# 80869 Harden process payment screen against Edge browser bug
Diffstat (limited to 'httemplate/elements/select-state.html')
-rw-r--r-- | httemplate/elements/select-state.html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/httemplate/elements/select-state.html b/httemplate/elements/select-state.html index 3fb559734..8db157b92 100644 --- a/httemplate/elements/select-state.html +++ b/httemplate/elements/select-state.html @@ -27,16 +27,13 @@ Example: > % unless ( $opt{'disable_empty'} ) { - <OPTION VALUE=""<% $opt{state} eq '' ? ' SELECTED' : '' %>><% $opt{empty_label} %> + <OPTION VALUE=""<% $opt{state} eq '' ? ' SELECTED' : '' %>><% $opt{empty_label} %></OPTION> % } % foreach my $state ( keys %states ) { - - <OPTION VALUE="<% $state |h %>"<% $state eq $opt{'state'} ? ' SELECTED' : '' %>><% $states{$state} || '(n/a)' |h %> - + <OPTION VALUE="<% $state |h %>"<% $state eq $opt{'state'} ? ' SELECTED' : '' %>><% $states{$state} || '(n/a)' |h %></OPTION> % } - </SELECT> <%init> |