mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
"fixed not found first entry of result-set"
This commit is contained in:
parent
1d5979bb1e
commit
14bc5239b7
@ -699,7 +699,7 @@ class accounts_ldap
|
|||||||
$fullSet = array();
|
$fullSet = array();
|
||||||
foreach (ldap_get_entries($this->ds, $sri) as $key => $entry)
|
foreach (ldap_get_entries($this->ds, $sri) as $key => $entry)
|
||||||
{
|
{
|
||||||
if ($key != 'count') $fullSet[$entry['uid'][0]] = $entry[$order][0];
|
if ($key !== 'count') $fullSet[$entry['uid'][0]] = $entry[$order][0];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_numeric($param['type'])) // return only group-members
|
if (is_numeric($param['type'])) // return only group-members
|
||||||
|
Loading…
Reference in New Issue
Block a user