diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-02-17 20:23:03 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-17 10:48:16 -0800 |
commit | dd24eaa377bf95fa9dafd43ca5989aebd822663b (patch) | |
tree | 5a87a6aeae19537647e9e686636a7ba9ce3fbb06 /xslt | |
parent | e80a6822d593da35e498cdab8226092dc825840f (diff) | |
download | subsurface-dd24eaa377bf95fa9dafd43ca5989aebd822663b.tar.gz |
Fix missing air temp on divelogs.de export
Fixes #439
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/divelogs-export.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xslt/divelogs-export.xslt b/xslt/divelogs-export.xslt index cbca51dec..cfd0f4ca6 100644 --- a/xslt/divelogs-export.xslt +++ b/xslt/divelogs-export.xslt @@ -88,7 +88,7 @@ <xsl:value-of select="substring-before(node()/depth/@mean, ' ')"/> </MEANDEPTH> <AIRTEMP> - <xsl:value-of select="substring-before(divetemperature/@air, ' ')"/> + <xsl:value-of select="substring-before(node()/temperature/@air, ' ')"/> </AIRTEMP> <WATERTEMPMAXDEPTH> <xsl:value-of select="substring-before(node()/temperature/@water, ' ')"/> |