Fix copy-paste issues in XML-RPC's _prepare_taxonomy(). see #20566.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20670 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-05-01 20:33:06 +00:00
parent 6fd24edbec
commit a6b1be42b4
1 changed files with 2 additions and 2 deletions

View File

@ -519,7 +519,7 @@ class wp_xmlrpc_server extends IXR_Server {
*/
protected function _prepare_taxonomy( $taxonomy, $fields ) {
$_taxonomy = array(
'name' => $taxonmy->name,
'name' => $taxonomy->name,
'label' => $taxonomy->label,
'hierarchical' => (bool) $taxonomy->hierarchical,
'public' => (bool) $taxonomy->public,
@ -531,7 +531,7 @@ class wp_xmlrpc_server extends IXR_Server {
$_taxonomy['labels'] = (array) $taxonomy->labels;
if ( in_array( 'capabilities', $fields ) )
$_taxonomy['cap'] = (array) $post_type->cap;
$_taxonomy['cap'] = (array) $taxonomy->cap;
if ( in_array( 'object_types', $fields ) )
$_taxonomy['taxonomies'] = array_unique( (array) $taxonomy->object_type );