From 0e7483cc5ab458ca88eba131eaf934fcd35226b3 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 25 Jun 2007 20:06:02 +0000 Subject: [PATCH] s/cat_name/name/ see #4537 git-svn-id: http://svn.automattic.com/wordpress/trunk@5755 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 f24beb7761..be76e15d8e 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -154,7 +154,7 @@ function get_the_category_rss($type = 'rss') { if ( 'rdf' == $type ) $the_list .= "\n\t\t\n"; if ( 'atom' == $type ) - $the_list .= sprintf( '', attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $category->cat_name ) ); + $the_list .= sprintf( '', attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $category->name ) ); else $the_list .= "\n\t\t\n"; }