mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
fix PHP Warning: Invalid argument supplied for foreach()
This commit is contained in:
parent
67aa825d33
commit
ac9496343f
@ -1505,12 +1505,16 @@ class Contacts extends Contacts\Storage
|
|||||||
$type = null;
|
$type = null;
|
||||||
}
|
}
|
||||||
$title = $this->fileas($contact,$type);
|
$title = $this->fileas($contact,$type);
|
||||||
$field_list = is_string($this->prefs['link_title_cf']) ? explode(',', $this->prefs['link_title_cf']) : $this->prefs['link_title_cf'];
|
|
||||||
foreach ($field_list as $field)
|
if (!empty($this->prefs['link_title_cf']))
|
||||||
{
|
{
|
||||||
if($contact['#'.$field])
|
$field_list = is_string($this->prefs['link_title_cf']) ? explode(',', $this->prefs['link_title_cf']) : $this->prefs['link_title_cf'];
|
||||||
|
foreach ($field_list as $field)
|
||||||
{
|
{
|
||||||
$title .= ', ' . $contact['#'.$field];
|
if($contact['#'.$field])
|
||||||
|
{
|
||||||
|
$title .= ', ' . $contact['#'.$field];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $title ;
|
return $title ;
|
||||||
|
Loading…
Reference in New Issue
Block a user