Better tabbing and newlining for RSS categories. Props coffee2code and Nazgul. fixes #1156

git-svn-id: http://svn.automattic.com/wordpress/trunk@4342 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2006-10-04 21:46:42 +00:00
parent 95512f2d80
commit 1c9f6b4852
1 changed files with 2 additions and 2 deletions

View File

@ -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<dc:subject>$category->cat_name</dc:subject>";
$the_list .= "\n\t\t<dc:subject>$category->cat_name</dc:subject>\n";
} else {
$the_list .= "\n\t<category>$category->cat_name</category>";
$the_list .= "\n\t\t<category>$category->cat_name</category>\n";
}
}
return apply_filters('the_category_rss', $the_list, $type);