]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1274139 - QuickSearch: searching for text containing colons no longer works
authorDylan Hardison <dylan@mozilla.com>
Thu, 19 May 2016 05:55:24 +0000 (01:55 -0400)
committerDylan Hardison <dylan@mozilla.com>
Thu, 19 May 2016 05:55:24 +0000 (01:55 -0400)
Bugzilla/Search/Quicksearch.pm

index d398910dd66329ce6986895aed4ad17148e5135d..c65fe06a8647b1beb7f0f567fd334f191d398723 100644 (file)
@@ -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;