From 1120b95cb2065ee3862ac0d8cc33faa7bbbf1daa Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 11 Nov 2014 13:33:55 -0500 Subject: [PATCH] More robust LDAP reading (suggested by Tuan Nguyen). --- module/VuFind/src/VuFind/Auth/LDAP.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/VuFind/src/VuFind/Auth/LDAP.php b/module/VuFind/src/VuFind/Auth/LDAP.php index 482c91ab902..b9434310af7 100644 --- a/module/VuFind/src/VuFind/Auth/LDAP.php +++ b/module/VuFind/src/VuFind/Auth/LDAP.php @@ -178,8 +178,8 @@ class LDAP extends AbstractBase ); if ($ldapBind) { // If the bind was successful, we can look up the full user info: - $ldapSearch = ldap_search( - $ldapConnection, $this->getSetting('basedn'), $ldapFilter + $ldapSearch = ldap_read( + $ldapConnection, $info[0]['dn'], 'objectclass=*' ); $data = ldap_get_entries($ldapConnection, $ldapSearch); return $this->processLDAPUser($data); -- GitLab