From: Arthur Schiwon Date: Wed, 1 Oct 2014 19:44:36 +0000 (+0200) Subject: fix changed variable name X-Git-Tag: v8.0.0alpha1~541^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3b3ad0bc4f745c8cdef5354a8661529f831bcd67;p=nextcloud-server.git fix changed variable name --- diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index f225ed6651e..b8ca041bce3 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -63,7 +63,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { $userDN = $this->access->username2dn($uid); if(isset($this->cachedGroupMembers[$gid])) { - $isInGroup = in_array($userDN, $this->groupMembers[$gid]); + $isInGroup = in_array($userDN, $this->cachedGroupMembers[$gid]); return $isInGroup; }