@@ -, +, @@ --- Koha/Biblio.pm | 3 +++ 1 file changed, 3 insertions(+) --- a/Koha/Biblio.pm +++ a/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)"; } --