mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-28 08:49:00 +01:00
read_accounts was making a loop to much, so we had always a empty line in
accounts.php
This commit is contained in:
parent
b483f6a430
commit
8b5b4cb849
@ -106,18 +106,7 @@
|
|||||||
$totaltodisplay = $nummsg;
|
$totaltodisplay = $nummsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
for ($i=0, $j=0; $i<$info["count"]; $i++,$j++) {
|
||||||
for ($i=$start, $j=0; $i<$totaltodisplay; $i++,$j++) {
|
|
||||||
if (! $phpgw_info["server"]["global_denied_users"][$info[$j]["uid"][0]]) {
|
|
||||||
$account_info[$j]["account_id"] = rawurlencode($info[$j]["dn"]);
|
|
||||||
$account_info[$j]["account_lid"] = $info[$j]["uid"][0];
|
|
||||||
$account_info[$j]["account_lastname"] = $info[$j]["sn"][0];
|
|
||||||
$account_info[$j]["account_firstname"] = $info[$j]["givenname"][0];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
for ($i=0, $j=0; $i<count($info); $i++,$j++) {
|
|
||||||
if (! $phpgw_info["server"]["global_denied_users"][$info[$i]["uid"][0]]) {
|
if (! $phpgw_info["server"]["global_denied_users"][$info[$i]["uid"][0]]) {
|
||||||
$account_info[$i]["account_id"] = rawurlencode($info[$i]["dn"]);
|
$account_info[$i]["account_id"] = rawurlencode($info[$i]["dn"]);
|
||||||
$account_info[$i]["account_lid"] = $info[$i]["uid"][0];
|
$account_info[$i]["account_lid"] = $info[$i]["uid"][0];
|
||||||
|
Loading…
Reference in New Issue
Block a user