Skip to content
Snippets Groups Projects
Commit 5e400ab5 authored by Demian Katz's avatar Demian Katz
Browse files

Switched to functional approach for ID escaping.

parent 105b6710
No related merge requests found
......@@ -385,9 +385,8 @@ class Params extends BaseParams
{
// No need for spell checking on an ID query!
$this->options->spellcheckEnabled(false);
for ($i = 0; $i < count($ids); $i++) {
$ids[$i] = '"' . addcslashes($ids[$i], '"') . '"';
}
$callback = function($i) { return '"' . addcslashes($i, '"') . '"'; };
$ids = array_map($callback, $ids);
$this->setOverrideQuery('id:(' . implode(' OR ', $ids) . ')');
}
......
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