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

(-)a/Koha/MetadataRecord/Authority.pm (-2 / +2 lines)
Lines 33-38 Authority data. Link Here
33
33
34
use strict;
34
use strict;
35
use warnings;
35
use warnings;
36
use Carp;
36
use C4::Context;
37
use C4::Context;
37
use MARC::Record;
38
use MARC::Record;
38
use MARC::File::XML;
39
use MARC::File::XML;
Lines 183-189 sub get_all_authorities_iterator { Link Here
183
                )
184
                )
184
            );
185
            );
185
        };
186
        };
186
        confess $@ if ($@);
187
        confess "$@" if ($@);
187
        $record->encoding('UTF-8');
188
        $record->encoding('UTF-8');
188
189
189
        # I'm not sure why we don't use the authtypecode from the database,
190
        # I'm not sure why we don't use the authtypecode from the database,
190
- 

Return to bug 22723