mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 00:58:55 +01:00
Fix LDAP filtering, I think.
This commit is contained in:
parent
d567722a61
commit
7be7aa0595
@ -359,8 +359,7 @@
|
|||||||
|
|
||||||
//echo '<br>first total="'.$total.'"';
|
//echo '<br>first total="'.$total.'"';
|
||||||
// Now, remove duplicate rows
|
// Now, remove duplicate rows
|
||||||
if (!$PHP_VERSION) global $PHP_VERSION;
|
if (floor(phpversion()) == 4) {
|
||||||
if (floor($PHP_VERSION ) == 4) {
|
|
||||||
$tmp = array_unique($ldap_fields);
|
$tmp = array_unique($ldap_fields);
|
||||||
$ldap_fields = $tmp;
|
$ldap_fields = $tmp;
|
||||||
} else {
|
} else {
|
||||||
|
@ -210,7 +210,7 @@
|
|||||||
if ($allmatched)
|
if ($allmatched)
|
||||||
{
|
{
|
||||||
if($DEBUG) { echo $ldap_fields[$i]["uidnumber"][0].' matched all!'."<br>"; }
|
if($DEBUG) { echo $ldap_fields[$i]["uidnumber"][0].' matched all!'."<br>"; }
|
||||||
$new_ldap[$i] = $ldap_fields[$i];
|
$new_ldap[] = $ldap_fields[$i];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user