From: bbaetz%student.usyd.edu.au <> Date: Sat, 10 Aug 2002 09:19:52 +0000 (+0000) Subject: Miseed &:: for call to SqlQuote, no bug # (cleanup from bug 158474) X-Git-Tag: bugzilla-2.17.1~216 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11774254a7944f91c25aa80c99a964e28b3a237f;p=thirdparty%2Fbugzilla.git Miseed &:: for call to SqlQuote, no bug # (cleanup from bug 158474) r=justdave x2 --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 8626026852..da47a6b293 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])';