diff options
Diffstat (limited to 'xslt/xml2manualcsv.xslt')
-rw-r--r-- | xslt/xml2manualcsv.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xslt/xml2manualcsv.xslt b/xslt/xml2manualcsv.xslt index a2f941da0..1f0336171 100644 --- a/xslt/xml2manualcsv.xslt +++ b/xslt/xml2manualcsv.xslt @@ -241,7 +241,7 @@ <xsl:value-of select="concat(format-number((substring-before(@mean, ' ') div 0.3048), '#.##'), '')"/> </xsl:when> <xsl:otherwise> - <xsl:value-of select="substring-before(@mean, ' ')"/> + <xsl:value-of select="format-number(substring-before(@mean, ' '), '#.##')"/> </xsl:otherwise> </xsl:choose> <xsl:text>"</xsl:text> |