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-country.html | |
parent | 6edcac3fb4f343273195460f03a5e3c01feecb2a (diff) |
RT# 80869 Harden process payment screen against Edge browser bug
Diffstat (limited to 'httemplate/elements/select-country.html')
-rw-r--r-- | httemplate/elements/select-country.html | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/httemplate/elements/select-country.html b/httemplate/elements/select-country.html index c98147907..286826752 100644 --- a/httemplate/elements/select-country.html +++ b/httemplate/elements/select-country.html @@ -91,15 +91,13 @@ Example: > % unless ( $opt{'disable_empty'} ) { - <OPTION VALUE=""><% $opt{'empty_label'} || '(all)' %> + <OPTION VALUE=""><% $opt{'empty_label'} || '(all)' %></OPTION> % } % foreach my $country ( @all_countries ) { - - <OPTION VALUE="<% $country |h %>" - <% $country eq $opt{'country'} ? ' SELECTED' : '' %> - ><% FS::geocode_Mixin->code2country($country). " ($country)" %> - + <OPTION VALUE="<% $country |h %>"<% $country eq $opt{'country'} ? ' SELECTED' : '' %>> + <% FS::geocode_Mixin->code2country($country). " ($country)" |h %> + </OPTION> % } </SELECT> |