mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
fixed typo, that prevented a css class on a single cell of a box to be used
This commit is contained in:
parent
fd5576e3ee
commit
c555299592
@ -1202,11 +1202,10 @@
|
||||
$this->html->formatOptions($cell['span'],',class').
|
||||
($cell['align'] && $orient != 'horizontal' || $sub_cell_has_align ? ' width="100%"' : '')); // alignment only works if table has full width
|
||||
}
|
||||
// use a div to not loose the css class
|
||||
elseif ($class && $orient)
|
||||
// put the class of the box-cell, into the the class of this cell
|
||||
elseif ($box_item_class)
|
||||
{
|
||||
//$html = $this->html->div($html,'',$class);
|
||||
$class = $box_item_class;
|
||||
$class = ($class ? $class . ' ' : '') . $box_item_class;
|
||||
}
|
||||
if ($type == 'groupbox')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user