summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorivan <ivan>2010-11-02 00:49:32 +0000
committerivan <ivan>2010-11-02 00:49:32 +0000
commitd13845e64b5d9dd5f5d7a04f4d8120c4de1ddbee (patch)
treef4e65093b2aaf1d6a99d353c9e68750ccabd43db /httemplate/elements
parent82de9040b2d99c05060be6396bab8bd74db96f6c (diff)
fix state lables for DE when set as the default country, RT#10359
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/select-state.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/select-state.html b/httemplate/elements/select-state.html
index 9b358e24d..2d60fde0f 100644
--- a/httemplate/elements/select-state.html
+++ b/httemplate/elements/select-state.html
@@ -32,7 +32,7 @@ Example:
% foreach my $state ( keys %states ) {
- <OPTION VALUE="<% $state |h %>"<% $state eq $opt{'state'} ? ' SELECTED' : '' %>><% $states{$state} || '(n/a)' %>
+ <OPTION VALUE="<% $state |h %>"<% $state eq $opt{'state'} ? ' SELECTED' : '' %>><% $states{$state} || '(n/a)' |h %>
% }