From 535b4eb293577f3009651a0d6d8382e7a89ba23b Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 6 Dec 2010 17:18:43 -0700 Subject: [PATCH] Fix typo --- framework/Ldap/lib/Horde/Ldap/Entry.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Ldap/lib/Horde/Ldap/Entry.php b/framework/Ldap/lib/Horde/Ldap/Entry.php index f2dcd5d55..b0462b42d 100644 --- a/framework/Ldap/lib/Horde/Ldap/Entry.php +++ b/framework/Ldap/lib/Horde/Ldap/Entry.php @@ -286,9 +286,9 @@ class Horde_Ldap_Entry /* Fetch attributes. */ $attributes = array(); - for ($attr = @ldap_first_attribute($this->_link, $this->_entry, $ber); + for ($attr = @ldap_first_attribute($this->_link, $this->_entry); $attr; - $attr = @ldap_next_attribute($this->_link, $this->_entry, $ber)) { + $attr = @ldap_next_attribute($this->_link, $this->_entry)) { /* Standard function to fetch value. */ $func = 'ldap_get_values'; -- 2.11.0