From 028cee6d661ae8f92ce7ea97b4d71c1234183d2c Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Tue, 14 Oct 2008 01:08:56 +0000 Subject: [PATCH] Don't encoded category element contents - fixes #4321 and #7815. git-svn-id: https://develop.svn.wordpress.org/trunk@9148 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/feed.php b/wp-includes/feed.php index 535a80de8d..e033434b09 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -337,7 +337,7 @@ function get_the_category_rss($type = 'rss') { elseif ( 'atom' == $type ) $the_list .= sprintf( '', attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $cat_name ) ); else - $the_list .= "\n\t\t\n"; + $the_list .= "\n\t\t\n"; } return apply_filters('the_category_rss', $the_list, $type);