ensure byline_author filter doesn't drop foreign markup

Submitted by Aristotle Pagaltzis
This commit is contained in:
Sam Ruby 2007-04-10 07:06:11 -04:00
parent 0ed1ee63e1
commit 1d20e8e74e
2 changed files with 2 additions and 1 deletions

1
THANKS
View File

@ -16,6 +16,7 @@ Morten Frederiksen - expungeCache
Lenny Domnitser - Coral CDN support for URLs with non-standard ports Lenny Domnitser - Coral CDN support for URLs with non-standard ports
Amit Chakradeo - Allow read-only files to be overwritten Amit Chakradeo - Allow read-only files to be overwritten
Matt Brubeck - fix new_channel Matt Brubeck - fix new_channel
Aristotle Pagaltzis - ensure byline_author filter doesn't drop foreign markup
This codebase represents a radical refactoring of Planet 2.0, which lists This codebase represents a radical refactoring of Planet 2.0, which lists
the following contributors: the following contributors:

View File

@ -8,7 +8,7 @@
<atom:name> <atom:name>
<xsl:value-of select="substring(../atom:content/xhtml:div/xhtml:span[@class='byline-author'],11)"/> <xsl:value-of select="substring(../atom:content/xhtml:div/xhtml:span[@class='byline-author'],11)"/>
</atom:name> </atom:name>
<xsl:apply-templates select="*[name()!='name']"/> <xsl:apply-templates select="*[not(self::atom:name)]"/>
</xsl:copy> </xsl:copy>
</xsl:template> </xsl:template>