Commit 58504864 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Merge branch '5694-cannot-add-a-group-to-users-and-groups-field-in-sudo-role' into '1.3-dev'

Resolve "Cannot add a group to "users and groups" field in sudo role"

See merge request !25
Showing with 8 additions and 0 deletions
+8 -0
......@@ -22,6 +22,14 @@ class userGroupSelect extends userSelect
{
protected $objectTypes = array('user', 'group');
protected $autoFilterAttributes = array('dn', 'cn', 'uid', 'description');
function __construct()
{
if (class_available('mixedGroup')) {
$this->objectTypes = array('user', 'ogroup');
}
parent::__construct();
}
}
class userGroupRoleSelect extends userGroupSelect
......
  • bmortier @bmortier

    mentioned in commit ffe43bb5

    By Côme Chilliet on 2017-10-31T16:10:17 (imported from GitLab)

    ·

    mentioned in commit ffe43bb5

    By Côme Chilliet on 2017-10-31T16:10:17 (imported from GitLab)

    Toggle commit list
Supports Markdown
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