]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Miseed &:: for call to SqlQuote, no bug # (cleanup from bug 158474)
authorbbaetz%student.usyd.edu.au <>
Sat, 10 Aug 2002 09:19:52 +0000 (09:19 +0000)
committerbbaetz%student.usyd.edu.au <>
Sat, 10 Aug 2002 09:19:52 +0000 (09:19 +0000)
r=justdave x2

Bugzilla/Search.pm

index 8626026852948dd74e9545c303ce9fa8e6ffc89a..da47a6b2930e26371db71c62be3b4a382dc4eefc 100644 (file)
@@ -827,7 +827,7 @@ sub GetByWordList {
         my $word = $w;
         if ($word ne "") {
             $word =~ tr/A-Z/a-z/;
-            $word = SqlQuote(quotemeta($word));
+            $word = &::SqlQuote(quotemeta($word));
             $word =~ s/^'//;
             $word =~ s/'$//;
             $word = '(^|[^a-z0-9])' . $word . '($|[^a-z0-9])';