From 767c3538b9f4aa2684429a7efea8f7728034c754 Mon Sep 17 00:00:00 2001 From: donncha Date: Thu, 5 Oct 2006 17:45:26 +0000 Subject: WP Merge to rev 4347 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@789 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/feed.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wp-includes/feed.php') diff --git a/wp-includes/feed.php b/wp-includes/feed.php index 7c3ce30..9068eb3 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -134,9 +134,9 @@ function get_the_category_rss($type = 'rss') { foreach ($categories as $category) { $category->cat_name = convert_chars($category->cat_name); if ('rdf' == $type) { - $the_list .= "\n\t$category->cat_name"; + $the_list .= "\n\t\t$category->cat_name\n"; } else { - $the_list .= "\n\t$category->cat_name"; + $the_list .= "\n\t\t$category->cat_name\n"; } } return apply_filters('the_category_rss', $the_list, $type); -- cgit