From 159185ae7e3b382a9acd850e7709834a5ebffb03 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sat, 10 Aug 2002 14:29:53 +0000 Subject: Fix another un-globalised SqlQuote(). Oops. --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) . ")"); } } -- cgit v1.2.3-24-g4f1b