diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2023-05-03 15:02:30 +0200 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2023-05-09 18:28:15 +0200 |
commit | fc4b4d007e41192c21d2979e45ac73541935c00e (patch) | |
tree | b84cac7b0da1e08edb2b9f6c8363e440905d460f | |
parent | c910a1320c7247c111d4f7e2a61540fc646938ff (diff) |
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.stahl@allotropia.de>
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit 63ac36893ad7f3b1c73cb46667fbfd5384a747dc)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151389
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r-- | filter/source/xslt/odf2xhtml/export/common/table/table.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
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"> |