mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
update css
This commit is contained in:
parent
3e41363990
commit
7776d70236
@ -95,7 +95,6 @@
|
||||
}
|
||||
$this->output['listbox'] = $var;
|
||||
}
|
||||
|
||||
$this->set_internal($extra_data);
|
||||
return $this->draw_box();
|
||||
}
|
||||
@ -124,7 +123,6 @@
|
||||
}
|
||||
$this->output['listbox'] = $var;
|
||||
}
|
||||
|
||||
$this->set_xinternal($extra_data);
|
||||
return $this->draw_box();
|
||||
}
|
||||
|
@ -108,22 +108,20 @@
|
||||
}
|
||||
}
|
||||
|
||||
function set_internal($data='')
|
||||
function set_internal($extra_data = '')
|
||||
{
|
||||
if($data=='' && !count($this->data))
|
||||
if($extra_data !='')
|
||||
{
|
||||
$data = '';
|
||||
$this->output['extrabox'] = $extra_data;
|
||||
}
|
||||
$this->output['extrabox'] = $data;
|
||||
}
|
||||
|
||||
function set_xinternal($data='')
|
||||
function set_xinternal($extra_data='')
|
||||
{
|
||||
if($data=='' && !count($this->data))
|
||||
if($extra_data !='')
|
||||
{
|
||||
$data = '';
|
||||
$this->output['xextrabox'] = $extra_data;
|
||||
}
|
||||
$this->output['xextrabox'] = $data;
|
||||
}
|
||||
|
||||
function draw_box()
|
||||
|
@ -24,6 +24,8 @@
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
<xsl:choose>
|
||||
<xsl:when test="extrabox">
|
||||
<tr>
|
||||
<td>
|
||||
@ -31,13 +33,13 @@
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:when test="xextrabox">
|
||||
<tr>
|
||||
<td>
|
||||
<xsl:call-template name="extrabox"/>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:otherwise>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</table>
|
||||
</td>
|
||||
|
Loading…
Reference in New Issue
Block a user