Changeset 14155 for trunk/wp-includes/post.php
- Timestamp:
- 04/18/2010 03:54:45 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r14133 r14155 2511 2511 // Hierarchical taxonomies must always pass IDs rather than names so that children with the same 2512 2512 // names but different parents aren't confused. 2513 $taxonomy_obj = get_taxonomy( $taxonomy ); 2514 if ( $taxonomy_obj->hierarchical ) { 2513 if ( is_taxonomy_hierarchical( $taxonomy ) ) { 2515 2514 $tags = array_map( 'intval', $tags ); 2516 2515 $tags = array_unique( $tags );
Note: See TracChangeset
for help on using the changeset viewer.