Skip to content

Commit

Permalink
Fix Atom feeds' categories. fixes #4307
Browse files Browse the repository at this point in the history
git-svn-id: https://develop.svn.wordpress.org/branches/2.2@5548 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
rob1n committed May 25, 2007
1 parent ab90a1a commit 77fa436
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wp-includes/feed.php
Expand Up @@ -151,13 +151,13 @@ function get_the_category_rss($type = 'rss') {
$home = get_bloginfo_rss('home');
$the_list = '';
foreach ( (array) $categories as $category ) {
$category->cat_name = convert_chars($category->cat_name);
$cat_name = convert_chars($category->cat_name);
if ( 'rdf' == $type )
$the_list .= "\n\t\t<dc:subject><![CDATA[$category->cat_name]]></dc:subject>\n";
$the_list .= "\n\t\t<dc:subject><![CDATA[$cat_name]]></dc:subject>\n";
if ( 'atom' == $type )
$the_list .= "<category scheme='$home' term='$category->cat_name' />";
$the_list .= sprintf( '<category scheme="%1$s" term="%2$s" />', attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $category->cat_name ) );
else
$the_list .= "\n\t\t<category><![CDATA[$category->cat_name]]></category>\n";
$the_list .= "\n\t\t<category><![CDATA[$cat_name]]></category>\n";
}
return apply_filters('the_category_rss', $the_list, $type);
}
Expand Down

0 comments on commit 77fa436

Please sign in to comment.