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

(-)a/C4/AuthoritiesMarc.pm (-1 / +4 lines)
Lines 74-79 use Koha::RecordProcessor; Link Here
74
use Koha::SearchEngine;
74
use Koha::SearchEngine;
75
use Koha::SearchEngine::Indexer;
75
use Koha::SearchEngine::Indexer;
76
use Koha::SearchEngine::Search;
76
use Koha::SearchEngine::Search;
77
use Koha::BackgroundJob;
77
78
78
=head1 NAME
79
=head1 NAME
79
80
Lines 1680-1685 sub merge { Link Here
1680
    my $counteditedbiblio = 0;
1681
    my $counteditedbiblio = 0;
1681
1682
1682
    my $biblios = Koha::Biblios->search( { biblionumber => { -in => \@biblionumbers } } );
1683
    my $biblios = Koha::Biblios->search( { biblionumber => { -in => \@biblionumbers } } );
1684
    Koha::BackgroundJob->before_batch_action_hooks();
1683
1685
1684
    my $syspref_include_see_from =
1686
    my $syspref_include_see_from =
1685
           C4::Context->preference('IncludeSeeFromInSearches')
1687
           C4::Context->preference('IncludeSeeFromInSearches')
Lines 1791-1796 sub merge { Link Here
1791
        ModBiblio( $marcrecord, $biblio->biblionumber, $biblio->frameworkcode, { disable_autolink => 1 } );
1793
        ModBiblio( $marcrecord, $biblio->biblionumber, $biblio->frameworkcode, { disable_autolink => 1 } );
1792
        $counteditedbiblio++;
1794
        $counteditedbiblio++;
1793
    }
1795
    }
1796
    Koha::BackgroundJob->after_batch_action_hooks();
1797
1794
    return $counteditedbiblio;
1798
    return $counteditedbiblio;
1795
}
1799
}
1796
1800
1797
- 

Return to bug 39156