|
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+)$lookahead/$2/g; |
|
|
944 |
$term =~ s/(\s+)(:+)$lookahead/$1/g; |
| 944 |
|
945 |
|
| 945 |
$term = $self->_query_regex_escape_process($term); |
946 |
$term = $self->_query_regex_escape_process($term); |
| 946 |
|
947 |
|
| 947 |
- |
|
|