mirror of
https://github.com/nextcloud/server.git
synced 2025-10-26 19:21:34 +00:00
LDAP group backend: Set configured true when it is... fixe oc-887
This commit is contained in:
parent
ad6562d14f
commit
e58efd7877
@ -31,8 +31,8 @@ class OC_GROUP_LDAP extends OC_Group_Backend {
|
||||
$this->ldapGroupFilter = OCP\Config::getAppValue('user_ldap', 'ldap_group_filter', '(objectClass=posixGroup)');
|
||||
$this->ldapGroupMemberAssocAttr = OCP\Config::getAppValue('user_ldap', 'ldap_group_member_assoc_attribute', 'uniqueMember');
|
||||
|
||||
if(empty($this->ldapGroupFilter) || empty($this->ldapGroupMemberAssocAttr)) {
|
||||
$this->configured = false;
|
||||
if(!empty($this->ldapGroupFilter) && !empty($this->ldapGroupMemberAssocAttr)) {
|
||||
$this->configured = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user