Actions
Support #1629
closedStrange recursive behaviour in stylesheet
Start date:
2012-09-18
Due date:
% Done:
0%
Estimated time:
Legacy ID:
Applies to branch:
Fix Committed on Branch:
Fixed in Maintenance Release:
Platforms:
Description
Reported by Jesper Tverskov:
This error can be reproduced with the attached stylesheet.
- If the row count, "rcount", is lower than 9, the recursion works.
If it is 9 the number of rows returned explodes. If it is higher than
9 no rows are returned.
- It is easy to fix the templates, I can do one of two:
If I change:
<xsl:value-of select="$i + 1"/>
</xsl:with-param>
to:
<xsl:with-param select="$i + 1"/>
Everything is ok.
It is also ok if I change it to:
<xsl:with-param as="xs:integer">
<xsl:value-of select="$i + 1"/>
</xsl:with-param>
Files
Please register to edit this issue
Actions