filter/source/xslt/export/spreadsheetml/table.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit da908a0c81eb144674c50e81e3dff4fdef3fd3dd Author: Julien Nabet <[email protected]> AuthorDate: Tue Aug 25 16:42:15 2020 +0200 Commit: Michael Stahl <[email protected]> CommitDate: Fri Aug 28 11:14:28 2020 +0200 tdf#136107: crash on export of selection typo in xslt about comparison operator Change-Id: I0ccf0babbf10b77b99c727afccc8c4ddcedb1acc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101335 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> (cherry picked from commit 8b2845295c722f3713cf7cc699b6068e30008a5f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101457 Reviewed-by: Michael Stahl <[email protected]> diff --git a/filter/source/xslt/export/spreadsheetml/table.xsl b/filter/source/xslt/export/spreadsheetml/table.xsl index d450e6502a3c..a0004995414c 100644 --- a/filter/source/xslt/export/spreadsheetml/table.xsl +++ b/filter/source/xslt/export/spreadsheetml/table.xsl @@ -430,7 +430,7 @@ <xsl:choose> <xsl:when test="$repetition <= $thresholdmax"> <xsl:copy-of select="$tableRow" /> - <xsl:if test="$repetition <= $thresholdmin"> + <xsl:if test="$repetition >= $thresholdmin"> <xsl:call-template name="optimized-row-repeating"> <xsl:with-param name="repetition" select="$repetition - 1"/> <xsl:with-param name="tableRow" select="$tableRow" /> _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
