Skip to content
Snippets Groups Projects
Commit ca4cfb99 authored by Tim Steiner's avatar Tim Steiner
Browse files

Handle ::find(NULL) on Group and User models.

parent 601369f3
No related branches found
No related tags found
No related merge requests found
......@@ -163,7 +163,7 @@ class Auth_GroupModel extends Unl_Model
}
$select->where('childGroup IN(?)', $group->getId());
} else {
$select->where('childGroup = ?', $group->getId());
$select->where($db->quoteInto('childGroup = ?', $group->getId()));
}
$records = $select->query()->fetchAll();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment