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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt (-1 / +1 lines)
Lines 207-213 $(document).ready(function() { Link Here
207
            <select name="authtype" id="authtype">
207
            <select name="authtype" id="authtype">
208
                <option value="">-- All --</option>
208
                <option value="">-- All --</option>
209
                [% FOREACH authority_type IN authority_types %]
209
                [% FOREACH authority_type IN authority_types %]
210
                    <option value="[% authtypeloo.value %]">[% authtypeloo.description %]</option>
210
                    <option value="[% authority_type.authtypecode %]">[% authority_type.authtypetext %]</option>
211
                [% END %]
211
                [% END %]
212
            </select>
212
            </select>
213
        </li>
213
        </li>
(-)a/tools/export.pl (-2 / +1 lines)
Lines 268-274 else { Link Here
268
268
269
    my $itemtypes = Koha::ItemTypes->search_with_localization;
269
    my $itemtypes = Koha::ItemTypes->search_with_localization;
270
270
271
    my $authority_types = Koha::Authority::Types->search( {}, { order_by => ['authtypecode'] } );
271
    my $authority_types = Koha::Authority::Types->search( {}, { order_by => ['authtypecode'] } )->unblessed;
272
272
273
    my $libraries = Koha::Libraries->search_filtered({}, { order_by => ['branchname'] })->unblessed;
273
    my $libraries = Koha::Libraries->search_filtered({}, { order_by => ['branchname'] })->unblessed;
274
    for my $library ( @$libraries ) {
274
    for my $library ( @$libraries ) {
275
- 

Return to bug 19683