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

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

Return to bug 18823