diff options
author | gerv%gerv.net <> | 2002-08-10 16:29:53 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-08-10 16:29:53 +0200 |
commit | 159185ae7e3b382a9acd850e7709834a5ebffb03 (patch) | |
tree | f177abce920f6312244e9bbed21c830c81197cec /Bugzilla/Search.pm | |
parent | 11774254a7944f91c25aa80c99a964e28b3a237f (diff) | |
download | bugzilla-159185ae7e3b382a9acd850e7709834a5ebffb03.tar.gz bugzilla-159185ae7e3b382a9acd850e7709834a5ebffb03.tar.xz |
Fix another un-globalised SqlQuote(). Oops.
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
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)) . ")"); } } |