diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-09-05 13:33:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-05 13:33:15 +0200 |
commit | cebbb1633aab6c1dfb20be9b49212b934c3b5e68 (patch) | |
tree | 960a96080ea1bd5253e0955fd9ec93b2216ba723 /apps/user_ldap | |
parent | 6be5dc91cb345886c14661f4ce7dd54a2e500f61 (diff) | |
parent | f8735a3205da31ab9745411691ce47e348823f8f (diff) | |
download | nextcloud-server-cebbb1633aab6c1dfb20be9b49212b934c3b5e68.tar.gz nextcloud-server-cebbb1633aab6c1dfb20be9b49212b934c3b5e68.zip |
Merge pull request #5642 from tobru/fix/groupOfUniqueNames_in_Wizard
recognize groupOfUniqueNames as valid LDAP group object
Diffstat (limited to 'apps/user_ldap')
-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 9d4da9cbf3f..7376507d134 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) { |