mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 22:35:27 +00:00
Fix mix reference on UDDF export
The mix value must be concatenated properly. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
0a99c26590
commit
453aeab470
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@
|
|||
<xsl:attribute name="ref">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@o2 != ''">
|
||||
<xsl:value-of select="'mix' + substring-before(@o2, '.')"/>
|
||||
<xsl:value-of select="concat('mix', substring-before(@o2, '.'))"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="'mix21'"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue