mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
fixed double displayed label
This commit is contained in:
parent
2fc090e301
commit
58c7f4bf61
@ -122,7 +122,8 @@
|
|||||||
$row_class = 'row';
|
$row_class = 'row';
|
||||||
etemplate::add_child($cell,$label =& etemplate::empty_cell('label','',array(
|
etemplate::add_child($cell,$label =& etemplate::empty_cell('label','',array(
|
||||||
'label' => $field['label'],
|
'label' => $field['label'],
|
||||||
'no_lang' => substr(lang($field['label']),-1) == '*' ? 2 : 0
|
'no_lang' => substr(lang($field['label']),-1) == '*' ? 2 : 0,
|
||||||
|
'span' => $field['type'] === 'label' ? '2' : '',
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
switch ((string)$field['type'])
|
switch ((string)$field['type'])
|
||||||
@ -154,7 +155,6 @@
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'label' :
|
case 'label' :
|
||||||
$label['span'] = 'all';
|
|
||||||
$row_class = 'th';
|
$row_class = 'th';
|
||||||
break;
|
break;
|
||||||
case 'checkbox' :
|
case 'checkbox' :
|
||||||
@ -208,16 +208,20 @@
|
|||||||
'size' => $field['type'] == 'link-entry' ? '' : $field['type'],
|
'size' => $field['type'] == 'link-entry' ? '' : $field['type'],
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
if ($readonly) $input['readonly'] = true;
|
|
||||||
|
|
||||||
if (!empty($field['help']) && $row_class != 'th')
|
|
||||||
{
|
|
||||||
$input['help'] = $field['help'];
|
|
||||||
$input['no_lang'] = substr(lang($help),-1) == '*' ? 2 : 0;
|
|
||||||
}
|
|
||||||
$cell['data'][0]['c'.$n++] = $row_class.',top';
|
$cell['data'][0]['c'.$n++] = $row_class.',top';
|
||||||
etemplate::add_child($cell,$input);
|
|
||||||
unset($input);
|
if (!is_null($input))
|
||||||
|
{
|
||||||
|
if ($readonly) $input['readonly'] = true;
|
||||||
|
|
||||||
|
if (!empty($field['help']) && $row_class != 'th')
|
||||||
|
{
|
||||||
|
$input['help'] = $field['help'];
|
||||||
|
$input['no_lang'] = substr(lang($help),-1) == '*' ? 2 : 0;
|
||||||
|
}
|
||||||
|
etemplate::add_child($cell,$input);
|
||||||
|
unset($input);
|
||||||
|
}
|
||||||
unset($label);
|
unset($label);
|
||||||
}
|
}
|
||||||
if ($type != 'customfields-list')
|
if ($type != 'customfields-list')
|
||||||
|
Loading…
Reference in New Issue
Block a user