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

(-)a/C4/Biblio.pm (-1 / +1 lines)
Lines 292-298 sub AddBiblio { Link Here
292
            # update MARC subfield that stores biblioitems.cn_sort
292
            # update MARC subfield that stores biblioitems.cn_sort
293
            _koha_marc_update_biblioitem_cn_sort( $record, $olddata, $frameworkcode );
293
            _koha_marc_update_biblioitem_cn_sort( $record, $olddata, $frameworkcode );
294
294
295
            if (!$disable_autolink && C4::Context->preference('BiblioAddsAuthorities')) {
295
            if (!$disable_autolink && C4::Context->preference('AutoLinkBiblios')) {
296
                BiblioAutoLink( $record, $frameworkcode );
296
                BiblioAutoLink( $record, $frameworkcode );
297
            }
297
            }
298
298
(-)a/misc/migration_tools/bulkmarcimport.pl (-2 / +1 lines)
Lines 647-653 RECORD: foreach my $record (@{$marc_records}) { Link Here
647
            $schema->txn_begin;
647
            $schema->txn_begin;
648
            if ($indexer) {
648
            if ($indexer) {
649
                $indexer->update_index(\@search_engine_record_ids, \@search_engine_records);
649
                $indexer->update_index(\@search_engine_record_ids, \@search_engine_records);
650
                if (C4::Context->preference('BiblioAddsAuthorities')) {
650
                if (C4::Context->preference('AutoLinkBiblios')) {
651
                    foreach my $record (@search_engine_records) {
651
                    foreach my $record (@search_engine_records) {
652
                        BiblioAutoLink($record, $framework);
652
                        BiblioAutoLink($record, $framework);
653
                    }
653
                    }
654
- 

Return to bug 29440