projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9beaacf
)
Fix for-call.
author
Jan Schneider
<jan@horde.org>
Fri, 17 Sep 2010 12:25:14 +0000
(14:25 +0200)
committer
Jan Schneider
<jan@horde.org>
Fri, 17 Sep 2010 12:29:19 +0000
(14:29 +0200)
framework/Ldap/lib/Horde/Ldap/Entry.php
patch
|
blob
|
history
diff --git
a/framework/Ldap/lib/Horde/Ldap/Entry.php
b/framework/Ldap/lib/Horde/Ldap/Entry.php
index
001fd8d
..
cc094eb
100644
(file)
--- 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';