From: gerv%gerv.net <> Date: Sat, 10 Aug 2002 14:29:53 +0000 (+0000) Subject: Fix another un-globalised SqlQuote(). Oops. X-Git-Tag: bugzilla-2.17.1~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=159185ae7e3b382a9acd850e7709834a5ebffb03;p=thirdparty%2Fbugzilla.git Fix another un-globalised SqlQuote(). Oops. --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index da47a6b293..0f311f07e1 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)) . ")"); } }