diff options
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/uddf.xslt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/xslt/uddf.xslt b/xslt/uddf.xslt index 567774cc0..81fb294d1 100644 --- a/xslt/uddf.xslt +++ b/xslt/uddf.xslt @@ -173,12 +173,17 @@ </xsl:variable> <xsl:if test="//u:divesite/u:site[@id = $ref]/u:name"> <location> - <xsl:if test="//u:divesite/u:site[@id=$ref]/u:geography/u:longitude != ''"> + <xsl:choose> + <xsl:when test="//u:divesite/u:site[@id=$ref]/u:geography/u:longitude != ''"> <xsl:attribute name="gps"> <xsl:value-of select="concat(//u:divesite/u:site[@id=$ref]/u:geography/u:latitude, ' ', //u:divesite/u:site[@id=$ref]/u:geography/u:longitude)"/> </xsl:attribute> <xsl:value-of select="//u:divesite/u:site[@id=$ref]/u:name"/> - </xsl:if> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="//u:divesite/u:site[@id=$ref]/u:name"/> + </xsl:otherwise> + </xsl:choose> </location> </xsl:if> </xsl:for-each> |