diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-12-13 16:24:39 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-13 08:51:53 -0800 |
commit | 453aeab4707badc25e669769dc575a27dc1a8e3d (patch) | |
tree | 88e8a7841227e0bfb33a3543327a248fdf18408e /xslt | |
parent | 0a99c2659075e87ac24068368efba1eceed9a106 (diff) | |
download | subsurface-453aeab4707badc25e669769dc575a27dc1a8e3d.tar.gz |
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>
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/uddf-export.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xslt/uddf-export.xslt b/xslt/uddf-export.xslt index 9b33149d4..0c428b97b 100644 --- a/xslt/uddf-export.xslt +++ b/xslt/uddf-export.xslt @@ -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'"/> |