From 31cf0bfd0734f65e43d2b2563900b3532b3a7a61 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 6 May 2022 09:37:23 +0200 Subject: [PATCH] Bug 30465: Fix Koha/Items/BatchUpdate.t --- Koha/Items.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Items.pm b/Koha/Items.pm index 1900a40a0fe..90b178a1cef 100644 --- a/Koha/Items.pm +++ b/Koha/Items.pm @@ -357,7 +357,8 @@ sub batch_update { my $indexer = Koha::SearchEngine::Indexer->new( { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); - $indexer->update_index( \@biblionumbers ); + $indexer->index_records( \@biblionumbers, 'specialUpdate', + "biblioserver", undef ); } } -- 2.25.1