[Home] [By Thread] [By Date] [Recent Entries]
<xsl:template match="/">
<xsl:variable name="x">
<xsl:choose>
<xsl:when test="false()">X</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:if test="$x">x</xsl:if>
</xsl:template>
This (unexpectedly) prints "x" using jclark's xt while
<xsl:template match="/">
<xsl:variable name="x"></xsl:variable>
<xsl:if test="$x">x</xsl:if>
</xsl:template>
Does not (as expected).
Thoughts?
Clark
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



