From 88639cb9b4617bf7eedd64e4908b3c90a89e677c Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Wed, 18 Sep 2013 20:38:53 +0000 Subject: [PATCH] Use `wp_parse_args()` again for `$args['rewrite']` in `register_taxonomy()`. Props SergeyBiryukov. Fixes #23668. git-svn-id: https://develop.svn.wordpress.org/trunk@25483 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 44d9dfb476..676f059cf0 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -352,17 +352,14 @@ function register_taxonomy( $taxonomy, $object_type, $args = array() ) { } if ( false !== $args['rewrite'] && ( is_admin() || '' != get_option( 'permalink_structure' ) ) ) { - if ( ! is_array( $args['rewrite'] ) ) - $args['rewrite'] = array(); - - if ( empty( $args['rewrite']['slug'] ) ) - $args['rewrite']['slug'] = sanitize_title_with_dashes( $taxonomy ); - - $args['rewrite'] = array_merge( array( + $args['rewrite'] = wp_parse_args( $args['rewrite'], array( 'with_front' => true, 'hierarchical' => false, 'ep_mask' => EP_NONE, - ), $args['rewrite'] ); + ) ); + + if ( empty( $args['rewrite']['slug'] ) ) + $args['rewrite']['slug'] = sanitize_title_with_dashes( $taxonomy ); if ( $args['hierarchical'] && $args['rewrite']['hierarchical'] ) $tag = '(.+?)';