mirror of
https://github.com/nextcloud/server.git
synced 2026-07-15 21:03:00 -04:00
Merge branch 'master' of gitorious.org:owncloud/owncloud
This commit is contained in:
commit
1395e411f4
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue