View | Details | Raw Unified | Return to bug 36163
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/usage_statistics.tt (-3 / +3 lines)
Lines 100-110 Link Here
100
                            <select name="UsageStatsCountry" id="UsageStatsCountry">
100
                            <select name="UsageStatsCountry" id="UsageStatsCountry">
101
                                <option value="">&nbsp;</option>
101
                                <option value="">&nbsp;</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
- 

Return to bug 36163