From e2d7892799f08a29798fe02ada3f2521fbf7e708 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 1 Sep 2021 16:16:33 +0100 Subject: [PATCH] Bug 11175: (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 d135387da1..ed4e7c0bad 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -531,6 +531,8 @@ Returns a query which can be used to search for all component parts of MARC21 bi sub get_components_query { my ($self) = @_; + my $builder = Koha::SearchEngine::QueryBuilder->new( + { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); my $marc = $self->metadata->record; my $searchstr; @@ -561,6 +563,7 @@ sub get_components_query { else { my $cleaned_title = $marc->title; $cleaned_title =~ tr|/||; + $cleaned_title = $builder->clean_search_term($cleaned_title); $searchstr = "Host-item:($cleaned_title)"; } -- 2.20.1