diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2014-10-01 12:36:18 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2014-10-01 12:36:18 (GMT) |
commit | 14269316c5a7b1ab1ec34da52bfe3565c4dfaf94 (patch) | |
tree | 47bedccf06aa7467a943a80f92fffe15fff0fc0f | |
parent | e86b803738ae7278fc05ffcc48839f195fa19a19 (diff) | |
download | Net_LDAP3-14269316c5a7b1ab1ec34da52bfe3565c4dfaf94.tar.gz |
Correct variable used to determine acl rights
-rw-r--r-- | lib/Net/LDAP3.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Net/LDAP3.php b/lib/Net/LDAP3.php index b1e0572..82bc055 100644 --- a/lib/Net/LDAP3.php +++ b/lib/Net/LDAP3.php @@ -2291,7 +2291,7 @@ class Net_LDAP3 } private function parse_aclrights(&$attributes, $attribute_value) { - $components = explode(':', $rights); + $components = explode(':', $attribute_value); $_acl_target = array_shift($components); $_acl_value = trim(implode(':', $components)); |