Kaydet (Commit) 8b950e82 authored tarafından Peter Jentsch's avatar Peter Jentsch

fix endless recursion with some characters in spreadsheetml headers/footers

üst 5bfa5cb8
...@@ -7560,6 +7560,9 @@ ...@@ -7560,6 +7560,9 @@
<xsl:with-param name="current-pos" select="string-length($temp)+$current-pos+3"/> <xsl:with-param name="current-pos" select="string-length($temp)+$current-pos+3"/>
</xsl:call-template> </xsl:call-template>
</xsl:when> </xsl:when>
<xsl:when test="starts-with($current-style-data, '&amp;')">
<xsl:value-of select="$current-pos + 1"/>
</xsl:when>
<xsl:otherwise> <xsl:otherwise>
<xsl:value-of select="$current-pos"/> <xsl:value-of select="$current-pos"/>
</xsl:otherwise> </xsl:otherwise>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment