"fixed problem with title cache causing:

- infolog to display wrong contacts in the list
- double reads of contacts"
This commit is contained in:
Ralf Becker 2008-10-25 09:06:11 +00:00
parent 7e74bf28f0
commit 5cf8a56f02

View File

@ -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;