Seems that our UDDF export is adding time after the event name. Thus we need to add reading the following time as well.
Signed-off-by: Miika Turkia <[email protected]> --- xslt/uddf.xslt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xslt/uddf.xslt b/xslt/uddf.xslt index 157aa59..133ae72 100644 --- a/xslt/uddf.xslt +++ b/xslt/uddf.xslt @@ -371,7 +371,7 @@ <xsl:attribute name="time"> <xsl:call-template name="timeConvert"> <xsl:with-param name="timeSec"> - <xsl:value-of select="preceding-sibling::divetime|preceding-sibling::u:divetime|preceding-sibling::u1:divetime"/> + <xsl:value-of select="preceding-sibling::divetime|preceding-sibling::u:divetime|preceding-sibling::u1:divetime|following-sibling::u:divetime"/> </xsl:with-param> </xsl:call-template> </xsl:attribute> -- 1.9.1 _______________________________________________ subsurface mailing list [email protected] http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
