|
Lines 99-105
Link Here
|
| 99 |
[% PROCESS 'country-list.inc' %] |
99 |
[% PROCESS 'country-list.inc' %] |
| 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('\s*,\s*') %] |
| 103 |
[% IF country == UsageStatsCountry %] |
103 |
[% IF country == UsageStatsCountry %] |
| 104 |
<option value="[% country.trim | html %]" selected="selected">[% country.trim | html %]</option> |
104 |
<option value="[% country.trim | html %]" selected="selected">[% country.trim | html %]</option> |
| 105 |
[% SET IsUsageStatsCountryValid = 1 %] |
105 |
[% SET IsUsageStatsCountryValid = 1 %] |
| 106 |
- |
|
|