Lines 100-110
Link Here
|
100 |
<select name="UsageStatsCountry" id="UsageStatsCountry"> |
100 |
<select name="UsageStatsCountry" id="UsageStatsCountry"> |
101 |
<option value=""> </option> |
101 |
<option value=""> </option> |
102 |
[% FOREACH country IN country_strings.split(',') %] |
102 |
[% FOREACH country IN country_strings.split(',') %] |
|
|
103 |
[% country = country.trim %] |
103 |
[% IF country == UsageStatsCountry %] |
104 |
[% IF country == UsageStatsCountry %] |
104 |
<option value="[% country.trim | html %]" selected="selected">[% country.trim | html %]</option> |
105 |
<option value="[% country | html %]" selected="selected">[% country | html %]</option> |
105 |
[% SET IsUsageStatsCountryValid = 1 %] |
106 |
[% SET IsUsageStatsCountryValid = 1 %] |
106 |
[% ELSE %] |
107 |
[% ELSE %] |
107 |
<option value="[% country.trim | html %]">[% country.trim | html %]</option> |
108 |
<option value="[% country | html %]">[% country | html %]</option> |
108 |
[% END %] |
109 |
[% END %] |
109 |
[% END %] |
110 |
[% END %] |
110 |
</select> |
111 |
</select> |
111 |
- |
|
|