diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-08-05 17:36:19 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-05 08:08:55 -0700 |
commit | 7f2cb179bede106fd2ed3dba29d024c392114e49 (patch) | |
tree | 97c7a66cf055be3d6bdf4a1f8a84d1f2293a2176 /xslt | |
parent | 3e00bac552ac6db12e1498e3177fc2ed8ea0badc (diff) | |
download | subsurface-7f2cb179bede106fd2ed3dba29d024c392114e49.tar.gz |
Remove wrong unit from CNS in UDDF import
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.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xslt/uddf.xslt b/xslt/uddf.xslt index d8ea618e6..c4911c584 100644 --- a/xslt/uddf.xslt +++ b/xslt/uddf.xslt @@ -454,7 +454,7 @@ <xsl:if test="cns|u:cns|u1:cns > 0"> <xsl:attribute name="cns"> - <xsl:value-of select="concat(cns|u:cns|u1:cns, ' C')"/> + <xsl:value-of select="cns|u:cns|u1:cns"/> </xsl:attribute> </xsl:if> |