diff --git a/phpgwapi/inc/class.egw_link.inc.php b/phpgwapi/inc/class.egw_link.inc.php index cf95f8431a..121fdf1d0d 100644 --- a/phpgwapi/inc/class.egw_link.inc.php +++ b/phpgwapi/inc/class.egw_link.inc.php @@ -545,7 +545,7 @@ class egw_link extends solink if (!$id) return ''; $title =& self::get_cache($app,$id); - if (isset($title)) + if (isset($title) && !is_array($id)) { if (self::DEBUG) echo '
'.__METHOD__."('$app','$id')='$title' (from cache)
\n"; return $title; @@ -1089,4 +1089,4 @@ class egw_link extends solink return !!($cache & $required); } } -egw_link::init_static(); \ No newline at end of file +egw_link::init_static();