From 8133ebad65ed7069c4920d88acb54d8d4f6b40e3 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 25 Jun 2007 19:51:26 +0000 Subject: [PATCH] s/cat_name/name/ see #4537 git-svn-id: https://develop.svn.wordpress.org/trunk@5754 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/feed.php b/wp-includes/feed.php index 3f635e67b6..f24beb7761 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -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\n"; if ( 'atom' == $type )