summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-08-10 11:19:52 +0200
committerbbaetz%student.usyd.edu.au <>2002-08-10 11:19:52 +0200
commit11774254a7944f91c25aa80c99a964e28b3a237f (patch)
treedda070b16e086e8a97abc5253096cc480468fe7e /Bugzilla
parent1d9c4444a8e8d2f89827dbcfaf32656f20929bdc (diff)
downloadbugzilla-11774254a7944f91c25aa80c99a964e28b3a237f.tar.gz
bugzilla-11774254a7944f91c25aa80c99a964e28b3a237f.tar.xz
Miseed &:: for call to SqlQuote, no bug # (cleanup from bug 158474)
r=justdave x2
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm2
1 files changed, 1 insertions, 1 deletions
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])';