summaryrefslogtreecommitdiff
path: root/fs_signup
diff options
context:
space:
mode:
authorivan <ivan>2002-04-19 22:32:05 +0000
committerivan <ivan>2002-04-19 22:32:05 +0000
commit3b84b516aa0e5e56d9fad2d7b0100ef2fd964d12 (patch)
treea434371b9ee90653171b2238c49a59b561676b5a /fs_signup
parenta015d6d685dbea8147bded0ec6019358366c321c (diff)
fix noment's signup template
Diffstat (limited to 'fs_signup')
-rwxr-xr-xfs_signup/FS-SignupClient/cgi/signup-alternate.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/fs_signup/FS-SignupClient/cgi/signup-alternate.html b/fs_signup/FS-SignupClient/cgi/signup-alternate.html
index 8b3b88eb2..50b3f5674 100755
--- a/fs_signup/FS-SignupClient/cgi/signup-alternate.html
+++ b/fs_signup/FS-SignupClient/cgi/signup-alternate.html
@@ -33,14 +33,16 @@ Contact Information
<%=
foreach ( @{$locales} ) {
- $OUT .= '<OPTION';
+ my $value = $_->{'state'};
+ $value .= ' ('. $_->{'county'}. ')' if $_->{'county'};
+ $value .= ' / '. $_->{'country'};
+
+ $OUT .= qq(<OPTION VALUE="$value");
$OUT .= ' SELECTED' if ( $state eq $_->{'state'}
&& $county eq $_->{'county'}
&& $country eq $_->{'country'}
);
- $OUT .= '>'. $_->{'state'};
- $OUT .= ' ('. $_->{'county'}. ')' if $_->{'county'};
- $OUT .= ' / '. $_->{'country'};
+ $OUT .= ">$value</OPTION>";
}
%>