mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 18:08:21 +01:00
"fixed problem with title cache causing:
- infolog to display wrong contacts in the list - double reads of contacts"
This commit is contained in:
parent
7e74bf28f0
commit
5cf8a56f02
@ -622,9 +622,10 @@ class egw_link extends solink
|
|||||||
}
|
}
|
||||||
if ($ids_to_query)
|
if ($ids_to_query)
|
||||||
{
|
{
|
||||||
foreach(ExecMethod(self::$app_register[$app]['titles'],$ids_to_query) as $id => $title)
|
foreach(ExecMethod(self::$app_register[$app]['titles'],$ids_to_query) as $id => $t)
|
||||||
{
|
{
|
||||||
$titles[$id] = $title;
|
$title =& self::get_cache($app,$id);
|
||||||
|
$titles[$id] = $title = $t;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $titles;
|
return $titles;
|
||||||
|
Loading…
Reference in New Issue
Block a user