s/cat_name/name/ see #4537

git-svn-id: https://develop.svn.wordpress.org/trunk@5754 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-06-25 19:51:26 +00:00
parent e4ed2b0504
commit 8133ebad65
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function get_the_category_rss($type = 'rss') {
$home = get_bloginfo_rss('home');
$the_list = '';
foreach ( (array) $categories as $category ) {
$cat_name = convert_chars($category->cat_name);
$cat_name = convert_chars($category->name);
if ( 'rdf' == $type )
$the_list .= "\n\t\t<dc:subject><![CDATA[$cat_name]]></dc:subject>\n";
if ( 'atom' == $type )