summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDylan Hardison <dylan@mozilla.com>2016-05-19 07:55:24 +0200
committerDylan Hardison <dylan@mozilla.com>2016-05-19 07:55:24 +0200
commitaa35a9f5db405089c29c8705d8099ff6b715b985 (patch)
treef5475cc9affab33b5997347368a05b89db1c62fe /Bugzilla
parent38087366e2ff317275c4e408be9e304b9c8b4f97 (diff)
downloadbugzilla-aa35a9f5db405089c29c8705d8099ff6b715b985.tar.gz
bugzilla-aa35a9f5db405089c29c8705d8099ff6b715b985.tar.xz
Bug 1274139 - QuickSearch: searching for text containing colons no longer works
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search/Quicksearch.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm
index d398910dd..c65fe06a8 100644
--- a/Bugzilla/Search/Quicksearch.pm
+++ b/Bugzilla/Search/Quicksearch.pm
@@ -306,7 +306,6 @@ sub _parse_line {
# only treat ' at the start or end of words as quotes
# it's easier to do this in reverse with regexes
- $line =~ s/(\w+[:=<>!])(\s+)/'$1'$2/g;
$line =~ s/(^|\s|:)'/$1\001/g;
$line =~ s/'($|\s)/\001$1/g;
$line =~ s/\\?'/\000/g;