Around line 349 when deleting records based on a supplied array of IDs. It should probably read
$query .= ' WHERE id IN (' . implode(',', $data_array) . ')';
Current Code:
// is it a query?
if(is_array($data_array))
{
// process
// this should be a list of id's
$query .= ' WHERE IN (' . implode(',', $data_array) . ')';
}
else
Around line 349 when deleting records based on a supplied array of IDs. It should probably read
Current Code:
See: http://sphinxsearch.com/docs/archives/2.0.4/sphinxql-delete.html