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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-2 / +1 lines)
Lines 940-946 sub _clean_search_term { Link Here
940
    }
940
    }
941
941
942
    # Remove unquoted colons that have whitespace on either side of them
942
    # Remove unquoted colons that have whitespace on either side of them
943
    $term =~ s/((:+)(\s+)|(\s+)(:+))$lookahead/\3\4/g;
943
    $term =~ s/((:+)(\s+)|(\s+)(:+))$lookahead/$3$4/g;
944
944
945
    $term = $self->_query_regex_escape_process($term);
945
    $term = $self->_query_regex_escape_process($term);
946
946
947
- 

Return to bug 24567