use inner HTML to avoid <element> being included in final HTML
All checks were successful
the build was successful

This commit is contained in:
Max Mehl 2019-09-09 11:44:29 +02:00
parent 2028b2f2b3
commit c9f8b09cc6
Signed by: max.mehl
GPG Key ID: 2704E4AB371E2E92

View File

@ -44,7 +44,7 @@
<!-- Static elements which can be included everywhere -->
<xsl:template match="static-element">
<xsl:variable name="id"><xsl:value-of select="@id"/></xsl:variable>
<xsl:copy-of select="/buildinfo/document/set/element[@id=$id]" />
<xsl:copy-of select="/buildinfo/document/set/element[@id=$id]/node()" />
</xsl:template>
</xsl:stylesheet>