This commit is contained in:
ceb 2002-10-12 22:33:24 +00:00
parent fd64b8f0f8
commit 49ef265853
3 changed files with 6 additions and 6 deletions

View File

@ -389,7 +389,7 @@
$s .= '>';
for ($j=0;$j<$cats[$i]['level'];$j++)
{
$s .= '-';
$s .= '&nbsp;.&nbsp;';
}
$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 .= '&nbsp;.&nbsp;';
}
$name .= $GLOBALS['phpgw']->strip_html($cat['name']);

View File

@ -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>

View File

@ -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>