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

(-)a/C4/Biblio.pm (-1 / +5 lines)
Lines 298-303 sub AddBiblio { Link Here
298
            _after_biblio_action_hooks({ action => 'create', biblio_id => $biblionumber });
298
            _after_biblio_action_hooks({ action => 'create', biblio_id => $biblionumber });
299
299
300
            logaction( "CATALOGUING", "ADD", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
300
            logaction( "CATALOGUING", "ADD", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
301
302
            unless ( $skip_record_index ) {
303
                my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
304
                $indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" );
305
            }
301
        });
306
        });
302
    } catch {
307
    } catch {
303
        warn $_;
308
        warn $_;
304
- 

Return to bug 33019