Make WordPress Core


Ignore:
Timestamp:
12/16/2008 07:22:13 AM (17 years ago)
Author:
ryan
Message:

Return cat name and description. Props josephscott. fixes #8494 for 2.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.7/xmlrpc.php

    r10150 r10206  
    27622762                $struct['categoryId'] = $cat->term_id;
    27632763                $struct['parentId'] = $cat->parent;
    2764                 $struct['description'] = $cat->description;
     2764                $struct['description'] = $cat->name;
     2765                $struct['categoryDescription'] = $cat->description;
    27652766                $struct['categoryName'] = $cat->name;
    27662767                $struct['htmlUrl'] = wp_specialchars(get_category_link($cat->term_id));
Note: See TracChangeset for help on using the changeset viewer.