From: Dylan Hardison Date: Thu, 19 May 2016 05:55:24 +0000 (-0400) Subject: Bug 1274139 - QuickSearch: searching for text containing colons no longer works X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa35a9f5db405089c29c8705d8099ff6b715b985;p=thirdparty%2Fbugzilla.git Bug 1274139 - QuickSearch: searching for text containing colons no longer works --- 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;