Ticket #1156: 1156.diff
| File 1156.diff, 755 bytes (added by , 20 years ago) |
|---|
-
wp-includes/feed.php
134 134 foreach ($categories as $category) { 135 135 $category->cat_name = convert_chars($category->cat_name); 136 136 if ('rdf' == $type) { 137 $the_list .= "\n\t <dc:subject>$category->cat_name</dc:subject>";137 $the_list .= "\n\t\t<dc:subject>$category->cat_name</dc:subject>\n"; 138 138 } else { 139 $the_list .= "\n\t <category>$category->cat_name</category>";139 $the_list .= "\n\t\t<category>$category->cat_name</category>\n"; 140 140 } 141 141 } 142 142 return apply_filters('the_category_rss', $the_list, $type);