fix parse error

git-svn-id: https://develop.svn.wordpress.org/trunk@2349 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
michelvaldrighi 2005-02-15 10:04:29 +00:00
parent fa6fdf3012
commit 8eb4e6ed34
1 changed files with 1 additions and 1 deletions

View File

@ -764,7 +764,7 @@ class wp_xmlrpc_server extends IXR_Server {
$struct['categoryId'] = $cat['cat_ID'];
$struct['description'] = $cat['cat_name'];
$struct['categoryName'] = $cat['cat_name'];
$struct['htmlUrl'] = wp_specialchars(get_category_link($cat['cat_ID']);
$struct['htmlUrl'] = wp_specialchars(get_category_link($cat['cat_ID']));
$struct['rssUrl'] = wp_specialchars(get_category_rss_link(false, $cat['cat_ID'], $cat['cat_name']));
$categories_struct[] = $struct;