summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-08-10 16:29:53 +0200
committergerv%gerv.net <>2002-08-10 16:29:53 +0200
commit159185ae7e3b382a9acd850e7709834a5ebffb03 (patch)
treef177abce920f6312244e9bbed21c830c81197cec /Bugzilla
parent11774254a7944f91c25aa80c99a964e28b3a237f (diff)
downloadbugzilla-159185ae7e3b382a9acd850e7709834a5ebffb03.tar.gz
bugzilla-159185ae7e3b382a9acd850e7709834a5ebffb03.tar.xz
Fix another un-globalised SqlQuote(). Oops.
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 da47a6b29..0f311f07e 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -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)) . ")");
}
}