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

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

parent ca4cfb99
No related branches found
No related tags found
No related merge requests found
......@@ -225,7 +225,7 @@ class Auth_GroupModel extends Unl_Model
}
$select->where('parentGroup IN(?)', $group->getId());
} else {
$select->where('parentGroup = ?', $group->getId());
$select->where($db->quoteInto('parentGroup = ?', $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