From b60e24197393302baf089e5ecf1f205248e56b86 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 1 Sep 2021 16:12:18 +0100 Subject: [PATCH] Bug 26314: (follow-up) Use clean_search_term This patch uses the now public clean_search_term from bug 28316 to sanitize the title string and prevent crashes in elastic search when title contain reserved characters. --- Koha/Biblio.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index f90063352d..c7d78b4379 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -976,6 +976,8 @@ Returns a query which can be used to search for all component parts of MARC21 bi sub get_volumes_query { my ($self) = @_; + my $builder = Koha::SearchEngine::QueryBuilder->new( + { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); my $marc = $self->metadata->record; my $searchstr; @@ -1006,6 +1008,7 @@ sub get_volumes_query { else { my $cleaned_title = $marc->title; $cleaned_title =~ tr|/||; + $cleaned_title = $builder->clean_search_term($cleaned_title); $searchstr = "ti,phr:($cleaned_title)"; } -- 2.20.1