diff options
author | Tobias Brunner <tobias@tobru.ch> | 2017-07-07 08:29:58 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@tobru.ch> | 2017-07-07 08:29:58 +0200 |
commit | f8735a3205da31ab9745411691ce47e348823f8f (patch) | |
tree | 1ae0010497f825d7e4d7fc484a44b760b2876456 | |
parent | d23bc9a99a6aa59aac9a0635ebbb7fa95fcba05a (diff) | |
download | nextcloud-server-f8735a3205da31ab9745411691ce47e348823f8f.tar.gz nextcloud-server-f8735a3205da31ab9745411691ce47e348823f8f.zip |
recognize groupOfUniqueNames as valid LDAP group object
This was already partly done in f88109b but was missed in the
fetchGroups function.
-rw-r--r-- | apps/user_ldap/lib/Wizard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Wizard.php b/apps/user_ldap/lib/Wizard.php index 73fcd4f1e44..ae49ff681f0 100644 --- a/apps/user_ldap/lib/Wizard.php +++ b/apps/user_ldap/lib/Wizard.php @@ -419,7 +419,7 @@ class Wizard extends LDAPUtility { * @throws \Exception */ public function fetchGroups($dbKey, $confKey) { - $obclasses = array('posixGroup', 'group', 'zimbraDistributionList', 'groupOfNames'); + $obclasses = array('posixGroup', 'group', 'zimbraDistributionList', 'groupOfNames', 'groupOfUniqueNames'); $filterParts = array(); foreach($obclasses as $obclass) { |