From: Michael M Slusarz Date: Tue, 7 Dec 2010 00:18:43 +0000 (-0700) Subject: Fix typo X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=535b4eb293577f3009651a0d6d8382e7a89ba23b;p=horde.git Fix typo --- 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';