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

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

Return to bug 33019