Prevent $taxonony->object_type containing duplicate values. Initial patch props kevinB. Fixes #16951
git-svn-id: https://develop.svn.wordpress.org/trunk@17688 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
2d59e7feb0
commit
649a1fad73
|
@ -354,7 +354,7 @@ function register_taxonomy( $taxonomy, $object_type, $args = array() ) {
|
||||||
unset( $args['capabilities'] );
|
unset( $args['capabilities'] );
|
||||||
|
|
||||||
$args['name'] = $taxonomy;
|
$args['name'] = $taxonomy;
|
||||||
$args['object_type'] = (array) $object_type;
|
$args['object_type'] = array_unique( (array)$object_type );
|
||||||
|
|
||||||
$args['labels'] = get_taxonomy_labels( (object) $args );
|
$args['labels'] = get_taxonomy_labels( (object) $args );
|
||||||
$args['label'] = $args['labels']->name;
|
$args['label'] = $args['labels']->name;
|
||||||
|
@ -437,6 +437,7 @@ function register_taxonomy_for_object_type( $taxonomy, $object_type) {
|
||||||
if ( ! get_post_type_object($object_type) )
|
if ( ! get_post_type_object($object_type) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if ( ! in_array( $object_type, $wp_taxonomies[$taxonomy]->object_type ) )
|
||||||
$wp_taxonomies[$taxonomy]->object_type[] = $object_type;
|
$wp_taxonomies[$taxonomy]->object_type[] = $object_type;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue