Don't use deprecated function. Fixes #8103 props Speedbozxer.

git-svn-id: http://svn.automattic.com/wordpress/trunk@9568 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-11-08 09:10:19 +00:00
parent 0ceb315f3e
commit 3a54acc52f
1 changed files with 1 additions and 1 deletions

View File

@ -2761,7 +2761,7 @@ class wp_xmlrpc_server extends IXR_Server {
$struct['description'] = $cat->name;
$struct['categoryName'] = $cat->name;
$struct['htmlUrl'] = wp_specialchars(get_category_link($cat->term_id));
$struct['rssUrl'] = wp_specialchars(get_category_rss_link(false, $cat->term_id, $cat->name));
$struct['rssUrl'] = wp_specialchars(get_category_feed_link($cat->term_id, 'rss2'));
$categories_struct[] = $struct;
}