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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc (-7 / +6 lines)
Lines 27-35 Link Here
27
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
27
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
28
        [% FOREACH authority_type IN authority_types %]
28
        [% FOREACH authority_type IN authority_types %]
29
            [% IF authority_type.authtypecode == authtypecode %]
29
            [% IF authority_type.authtypecode == authtypecode %]
30
            <option value="[% authority_type.value %]" selected="selected">[% authority_type.authtypetext %]</option>
30
            <option value="[% authority_type.authtypecode%]" selected="selected">[% authority_type.authtypetext %]</option>
31
            [% ELSE %]
31
            [% ELSE %]
32
            <option value="[% authority_type.value %]">[% authority_type.authtypetext %]</option>
32
            <option value="[% authority_type.authtypecode %]">[% authority_type.authtypetext %]</option>
33
            [% END %]
33
            [% END %]
34
        [% END %]
34
        [% END %]
35
        </select>
35
        </select>
Lines 83-91 Link Here
83
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
83
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
84
        [% FOREACH authority_type IN authority_types %]
84
        [% FOREACH authority_type IN authority_types %]
85
            [% IF authority_type.authtypecode == authtypecode %]
85
            [% IF authority_type.authtypecode == authtypecode %]
86
            <option value="[% authority_type.value %]" selected="selected">[% authority_type.authtypetext %]</option>
86
            <option value="[% authority_type.authtypecode %]" selected="selected">[% authority_type.authtypetext %]</option>
87
            [% ELSE %]
87
            [% ELSE %]
88
            <option value="[% authority_type.value %]">[% authority_type.authtypetext %]</option>
88
            <option value="[% authority_type.authtypecode %]">[% authority_type.authtypetext %]</option>
89
            [% END %]
89
            [% END %]
90
        [% END %]
90
        [% END %]
91
        </select>
91
        </select>
Lines 139-147 Link Here
139
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
139
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
140
        [% FOREACH authority_type IN authority_types %]
140
        [% FOREACH authority_type IN authority_types %]
141
            [% IF authority_type.authtypecode == authtypecode %]
141
            [% IF authority_type.authtypecode == authtypecode %]
142
            <option value="[% authority_type.value %]" selected="selected">[% authority_type.authtypetext %]</option>
142
            <option value="[% authority_type.authtypecode %]" selected="selected">[% authority_type.authtypetext %]</option>
143
            [% ELSE %]
143
            [% ELSE %]
144
            <option value="[% authority_type.value %]">[% authority_type.authtypetext %]</option>
144
            <option value="[% authority_type.authtypecode %]">[% authority_type.authtypetext %]</option>
145
            [% END %]
145
            [% END %]
146
        [% END %]
146
        [% END %]
147
        </select>
147
        </select>
148
- 

Return to bug 15469