diff --git a/wp-includes/feed-functions.php b/wp-includes/feed-functions.php index 0b377bc301..6a4766986c 100644 --- a/wp-includes/feed-functions.php +++ b/wp-includes/feed-functions.php @@ -134,9 +134,9 @@ function 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"; } } echo apply_filters('the_category_rss', $the_list, $type);