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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-de.inc (-1 / +1 lines)
Lines 84-90 Link Here
84
        <select id="select_city" name="select_city">
84
        <select id="select_city" name="select_city">
85
            <option value="|||"></option>
85
            <option value="|||"></option>
86
            [% FOREACH c IN cities %]
86
            [% FOREACH c IN cities %]
87
                [% IF c.city_name == city %]
87
                [% IF c.city_name == city && c.city_state == state && c.city_zipcode == zipcode %]
88
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]" selected="selected">
88
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]" selected="selected">
89
                [% ELSE %]
89
                [% ELSE %]
90
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]">
90
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]">
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-fr.inc (-1 / +1 lines)
Lines 83-89 Link Here
83
        <select id="select_city" name="select_city">
83
        <select id="select_city" name="select_city">
84
            <option value="|||"></option>
84
            <option value="|||"></option>
85
        [% FOREACH c IN cities %]
85
        [% FOREACH c IN cities %]
86
            [% IF c.city_name == city %]
86
            [% IF c.city_name == city && c.city_state == state && c.city_zipcode == zipcode %]
87
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]" selected="selected">
87
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]" selected="selected">
88
            [% ELSE %]
88
            [% ELSE %]
89
                 <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]">
89
                 <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]">
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-us.inc (-2 / +1 lines)
Lines 72-78 Link Here
72
        <select id="select_city" name="select_city">
72
        <select id="select_city" name="select_city">
73
            <option value="|||"></option>
73
            <option value="|||"></option>
74
            [% FOREACH c IN cities %]
74
            [% FOREACH c IN cities %]
75
                [% IF c.city_name == city %]
75
                [% IF c.city_name == city && c.city_state == state && c.city_zipcode == zipcode %]
76
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]" selected="selected">
76
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]" selected="selected">
77
                [% ELSE %]
77
                [% ELSE %]
78
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]">
78
                <option value="[% c.city_zipcode %]|[% c.city_name %]|[% c.city_state %]|[% c.city_country %]">
79
- 

Return to bug 15644