Commit 159185ae authored by gerv%gerv.net's avatar gerv%gerv.net

Fix another un-globalised SqlQuote(). Oops.

parent 11774254
...@@ -845,7 +845,7 @@ sub GetByWordListSubstr { ...@@ -845,7 +845,7 @@ sub GetByWordListSubstr {
foreach my $word (split(/[\s,]+/, $strs)) { foreach my $word (split(/[\s,]+/, $strs)) {
if ($word ne "") { if ($word ne "") {
push(@list, "INSTR(LOWER($field), " . lc(SqlQuote($word)) . ")"); push(@list, "INSTR(LOWER($field), " . lc(&::SqlQuote($word)) . ")");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment