forked from extern/egroupware
update
This commit is contained in:
parent
fd64b8f0f8
commit
49ef265853
phpgwapi
@ -389,7 +389,7 @@
|
||||
$s .= '>';
|
||||
for ($j=0;$j<$cats[$i]['level'];$j++)
|
||||
{
|
||||
$s .= '-';
|
||||
$s .= ' . ';
|
||||
}
|
||||
$s .= $GLOBALS['phpgw']->strip_html($cats[$i]['name']);
|
||||
if ($cats[$i]['app_name'] == 'phpgw')
|
||||
@ -481,7 +481,7 @@
|
||||
$name = '';
|
||||
for ($i=0;$i<$cat['level'];$i++)
|
||||
{
|
||||
$name .= '-';
|
||||
$name .= ' . ';
|
||||
}
|
||||
$name .= $GLOBALS['phpgw']->strip_html($cat['name']);
|
||||
|
||||
|
@ -24,10 +24,10 @@
|
||||
<xsl:variable name="id"><xsl:value-of select="id"/></xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="selected">
|
||||
<option value="{$id}" selected="selected"><xsl:value-of select="name"/></option>
|
||||
<option value="{$id}" selected="selected"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<option value="{$id}"><xsl:value-of select="name"/></option>
|
||||
<option value="{$id}"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
@ -9,10 +9,10 @@
|
||||
<xsl:variable name="id"><xsl:value-of select="id"/></xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="selected">
|
||||
<option value="{$id}" selected="selected"><xsl:value-of select="name"/></option>
|
||||
<option value="{$id}" selected="selected"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<option value="{$id}"><xsl:value-of select="name"/></option>
|
||||
<option value="{$id}"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
Loading…
Reference in New Issue
Block a user