]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix another un-globalised SqlQuote(). Oops.
authorgerv%gerv.net <>
Sat, 10 Aug 2002 14:29:53 +0000 (14:29 +0000)
committergerv%gerv.net <>
Sat, 10 Aug 2002 14:29:53 +0000 (14:29 +0000)
Bugzilla/Search.pm

index da47a6b2930e26371db71c62be3b4a382dc4eefc..0f311f07e11bfa34393ffdbeb63d4a9574cddf9c 100644 (file)
@@ -845,7 +845,7 @@ sub GetByWordListSubstr {
 
     foreach my $word (split(/[\s,]+/, $strs)) {
         if ($word ne "") {
-            push(@list, "INSTR(LOWER($field), " . lc(SqlQuote($word)) . ")");
+            push(@list, "INSTR(LOWER($field), " . lc(&::SqlQuote($word)) . ")");
         }
     }