summaryrefslogtreecommitdiffstats
path: root/xslt/uddf-export.xslt
diff options
context:
space:
mode:
Diffstat (limited to 'xslt/uddf-export.xslt')
-rw-r--r--xslt/uddf-export.xslt10
1 files changed, 4 insertions, 6 deletions
diff --git a/xslt/uddf-export.xslt b/xslt/uddf-export.xslt
index 03b08dea1..2180a2806 100644
--- a/xslt/uddf-export.xslt
+++ b/xslt/uddf-export.xslt
@@ -256,12 +256,10 @@
<datetime>
<xsl:value-of select="concat(./@date, 'T', ./@time)"/>
</datetime>
- <xsl:for-each select="divecomputer">
- <xsl:if test="temperature/@air|divetemperature/@air != ''">
- <airtemperature>
- <xsl:value-of select="format-number(substring-before(temperature/@air|divetemperature/@air, ' ') + 273.15, '0.00')"/>
- </airtemperature>
- </xsl:if>
+ <xsl:for-each select="divecomputer/temperature/@air|divecomputer/divetemperature/@air|divetemperature/@air">
+ <airtemperature>
+ <xsl:value-of select="format-number(substring-before(., ' ') + 273.15, '0.00')"/>
+ </airtemperature>
</xsl:for-each>
<xsl:if test="parent::trip">
<tripmembership ref="trip{generate-id(..)}"/>