filter/source/xslt/odf2xhtml/export/common/table/table.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 63ac36893ad7f3b1c73cb46667fbfd5384a747dc Author: Michael Stahl <michael.st...@allotropia.de> AuthorDate: Wed May 3 15:02:30 2023 +0200 Commit: Michael Stahl <michael.st...@allotropia.de> CommitDate: Mon May 8 09:40:31 2023 +0200 tdf#153839 XHTML export: fix syntax error in table.xsl Static error at xsl:param on line 67 column 40 of table.xsl: XTSE0010: xsl:param must not be preceded by other instructions (regression from commit ce4272c25426f0084e53735e80870b9339239078) Change-Id: I5bed9a8ad81edc5ec016618cb9fd5d75209a2809 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151464 Tested-by: Michael Stahl <michael.st...@allotropia.de> Reviewed-by: Michael Stahl <michael.st...@allotropia.de> diff --git a/filter/source/xslt/odf2xhtml/export/common/table/table.xsl b/filter/source/xslt/odf2xhtml/export/common/table/table.xsl index d55948cab5b9..1e9baa5703f2 100644 --- a/filter/source/xslt/odf2xhtml/export/common/table/table.xsl +++ b/filter/source/xslt/odf2xhtml/export/common/table/table.xsl @@ -63,9 +63,9 @@ <xsl:template match="table:table" name="table:table"> - <xsl:text>
</xsl:text> <xsl:param name="globalData" /> + <xsl:text>
</xsl:text> <!-- The table will only be created if the table:scenario is active --> <xsl:if test="not(table:scenario) or table:scenario/@table:is-active"> <xsl:call-template name="create-table">