s/cat_name/name/ see #4537

git-svn-id: http://svn.automattic.com/wordpress/trunk@5754 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-06-25 19:51:26 +00:00
parent 2fd0094ce3
commit a5e56dc9db
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 )