View | Details | Raw Unified | Return to bug 18823
Collapse All | Expand All

(-)a/Koha/MetaSearcher.pm (-2 / +1 lines)
Lines 244-250 sub _db_query_get_match_conditions { Link Here
244
    } elsif ( $_batch_db_text_columns->{$index} ) {
244
    } elsif ( $_batch_db_text_columns->{$index} ) {
245
        my $stripped_value = $value;
245
        my $stripped_value = $value;
246
246
247
        $stripped_value =~ s/[^\w]//g;
247
        $stripped_value =~ s/[^\w ]/.*/g;
248
        $stripped_value =~ s/^ +| +$//g;
248
        $stripped_value =~ s/^ +| +$//g;
249
249
250
        return $value if ( !$stripped_value );
250
        return $value if ( !$stripped_value );
251
- 

Return to bug 18823