Skip to content
Snippets Groups Projects
Commit 34464b1f authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

LDAP group backend: Set configured true when it is... fixe oc-887

parent aa88ec81
Branches
No related tags found
Loading
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment