Wrap cat name in CDATA. props alexkingorg. fixes #3252

git-svn-id: https://develop.svn.wordpress.org/trunk@4454 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-11-08 06:57:26 +00:00
parent 3579a1f67a
commit a9b0944ae2
1 changed files with 2 additions and 2 deletions

View File

@ -135,9 +135,9 @@ function get_the_category_rss($type = 'rss') {
foreach ( (array) $categories as $category ) {
$category->cat_name = convert_chars($category->cat_name);
if ( 'rdf' == $type )
$the_list .= "\n\t\t<dc:subject>$category->cat_name</dc:subject>\n";
$the_list .= "\n\t\t<dc:subject><![CDATA[$category->cat_name]]></dc:subject>\n";
else
$the_list .= "\n\t\t<category>$category->cat_name</category>\n";
$the_list .= "\n\t\t<category><![CDATA[$category->cat_name]]></category>\n";
}
return apply_filters('the_category_rss', $the_list, $type);
}