diff options
Diffstat (limited to 'xslt/xml2manualcsv.xslt')
-rw-r--r-- | xslt/xml2manualcsv.xslt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xslt/xml2manualcsv.xslt b/xslt/xml2manualcsv.xslt index e240d3123..242332756 100644 --- a/xslt/xml2manualcsv.xslt +++ b/xslt/xml2manualcsv.xslt @@ -90,7 +90,7 @@ <xsl:choose> <xsl:when test="$units = 1"> <xsl:choose> - <xsl:when test="divecomputer[1]/sample[@pressure]/@pressure > 0"> + <xsl:when test="substring-before(divecomputer[1]/sample[@pressure]/@pressure, ' ') > 0"> <xsl:value-of select="concat(format-number((substring-before(divecomputer[1]/sample[@pressure]/@pressure, ' ') * 14.5037738007), '#'), '')"/> </xsl:when> <xsl:otherwise> @@ -108,7 +108,7 @@ <xsl:choose> <xsl:when test="$units = 1"> <xsl:choose> - <xsl:when test="divecomputer[1]/sample[@pressure][last()]/@pressure > 0"> + <xsl:when test="substring-before(divecomputer[1]/sample[@pressure][last()]/@pressure, ' ') > 0"> <xsl:value-of select="concat(format-number((substring-before(divecomputer[1]/sample[@pressure][last()]/@pressure, ' ') * 14.5037738007), '#'), '')"/> </xsl:when> <xsl:otherwise> |