@@ -, +, @@ --- C4/Biblio.pm | 5 +++++ 1 file changed, 5 insertions(+) --- a/C4/Biblio.pm +++ a/C4/Biblio.pm @@ -296,6 +296,11 @@ sub AddBiblio { _after_biblio_action_hooks({ action => 'create', biblio_id => $biblionumber }); logaction( "CATALOGUING", "ADD", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog"); + + unless ( $skip_record_index ) { + my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX }); + $indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" ); + } }); } catch { warn $_; --