mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
"fetching of the content of selectbox customfield did not work (options were not set)"
This commit is contained in:
parent
e522141b42
commit
583be8ddab
@ -157,7 +157,14 @@ class infolog_widget
|
||||
if ($type{0} == '#') // custom field --> use field-type itself
|
||||
{
|
||||
$field = $this->infolog->customfields[substr($type,1)];
|
||||
if (($cell['type'] = $field['type'])) break;
|
||||
if (($cell['type'] = $field['type']))
|
||||
{
|
||||
if ($field['type'] == 'select')
|
||||
{
|
||||
$cell['sel_options'] = $field['values'];
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
$cell['type'] = 'label';
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user