Skip to content

Instantly share code, notes, and snippets.

@nul800sebastiaan
Created September 29, 2011 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nul800sebastiaan/1250799 to your computer and use it in GitHub Desktop.
Save nul800sebastiaan/1250799 to your computer and use it in GitHub Desktop.
XSLT boolean
<xsl:variable name="myBoolean" select="$currentPage/prop = '1'" />
<!-- Doesn't work! -->
<xsl:value-of select="myTest:GetResult($myBoolean)" />
<!-- Works.. -->
<xsl:value-of select="myTest:GetResult($currentPage/prop = '1')" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment