diff options
Diffstat (limited to 'Bugzilla')
-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)) . ")"); } } |