@@ -, +, @@ 3.a) note that import batches for saving appear on the left side as targets to save an import batch author, title, isbn changes are applied (either through searching again, or through the Staged MARC management page in Tools) --- 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 ); --