@@ -, +, @@ 3.a) note that import batches for saving appear on the left side as targets to save --- Koha/MetaSearcher.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/MetaSearcher.pm +++ a/Koha/MetaSearcher.pm @@ -244,7 +244,7 @@ sub _db_query_get_match_conditions { } elsif ( $_batch_db_text_columns->{$index} ) { my $stripped_value = $value; - $stripped_value =~ s/[^\w]//g; + $stripped_value =~ s/[^\w ]//g; $stripped_value =~ s/^ +| +$//g; return $value if ( !$stripped_value ); --