1
Vote

AtomToRss20.xsl seemingly incorrect. Gets wrong link.

description

Line 42 in \Resources\AtomToRss20.xsl is this
 
    <xsl:element name="link">
      <xsl:value-of select="//*[name()='link']/@href"/>
    </xsl:element>
 
Surely it should be
 
    <xsl:element name="link">
      <xsl:value-of select="child::*[name()='link']/@href"/>
    </xsl:element>
 
?
 
When changed the link to atom feeds point to the post's web page. Left unchanged the link to atom feeds points to the feed's url.
 
Thanks in advance.
 
Regards
Dave A

comments