Fixed bug in RSS generation with https:// links.

svn path=/trunk/; revision=6240
This commit is contained in:
2006-03-27 20:20:09 +00:00
parent 28676b905c
commit 412a51597e
2 changed files with 6 additions and 0 deletions

View File

@@ -30,6 +30,9 @@
<xsl:when test="starts-with ($link, 'http:')">
<xsl:value-of select="$link" />
</xsl:when>
<xsl:when test="starts-with ($link, 'https:')">
<xsl:value-of select="$link" />
</xsl:when>
<xsl:otherwise>http://www.fsfeurope.org<xsl:value-of select="$link" />
</xsl:otherwise>
</xsl:choose>

View File

@@ -30,6 +30,9 @@
<xsl:when test="starts-with ($link, 'http:')">
<xsl:value-of select="$link" />
</xsl:when>
<xsl:when test="starts-with ($link, 'https:')">
<xsl:value-of select="$link" />
</xsl:when>
<xsl:otherwise>http://www.fsfeurope.org<xsl:value-of select="$link" />
</xsl:otherwise>
</xsl:choose>