From: Jan Schneider Date: Fri, 17 Sep 2010 12:25:14 +0000 (+0200) Subject: Fix for-call. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5ec1a7cbbe8ed96218b07e2ee77f08cc8be098f5;p=horde.git Fix for-call. --- diff --git a/framework/Ldap/lib/Horde/Ldap/Entry.php b/framework/Ldap/lib/Horde/Ldap/Entry.php index 001fd8d93..cc094eb9b 100644 --- a/framework/Ldap/lib/Horde/Ldap/Entry.php +++ b/framework/Ldap/lib/Horde/Ldap/Entry.php @@ -287,7 +287,8 @@ class Horde_Ldap_Entry /* Fetch attributes. */ $attributes = array(); for ($attr = @ldap_first_attribute($this->_link, $this->_entry, $ber); - $attr = @ldap_next_attribute($this->_link, $this->_entry, $ber);) { + $attr; + $attr = @ldap_next_attribute($this->_link, $this->_entry, $ber)) { /* Standard function to fetch value. */ $func = 'ldap_get_values';