mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 12:51:52 +02: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
|
if ($type{0} == '#') // custom field --> use field-type itself
|
||||||
{
|
{
|
||||||
$field = $this->infolog->customfields[substr($type,1)];
|
$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';
|
$cell['type'] = 'label';
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user