From 11774254a7944f91c25aa80c99a964e28b3a237f Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Sat, 10 Aug 2002 09:19:52 +0000 Subject: Miseed &:: for call to SqlQuote, no bug # (cleanup from bug 158474) r=justdave x2 --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 862602685..da47a6b29 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -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])'; -- cgit v1.2.3-24-g4f1b