Correct logic inversion. #19275.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19742 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-01-23 20:10:01 +00:00
parent 0c224cd82c
commit 774e51c04c
1 changed files with 2 additions and 2 deletions

View File

@ -29,12 +29,12 @@ function create_initial_taxonomies() {
'category' => array(
'hierarchical' => true,
'slug' => get_option('category_base') ? get_option('category_base') : 'category',
'with_front' => get_option('category_base') || $wp_rewrite->using_index_permalinks(),
'with_front' => ! get_option('category_base') || $wp_rewrite->using_index_permalinks(),
'ep_mask' => EP_CATEGORIES,
),
'post_tag' => array(
'slug' => get_option('tag_base') ? get_option('tag_base') : 'tag',
'with_front' => get_option('tag_base') || $wp_rewrite->using_index_permalinks(),
'with_front' => ! get_option('tag_base') || $wp_rewrite->using_index_permalinks(),
'ep_mask' => EP_TAGS,
),
'post_format' => $post_format_base ? array( 'slug' => $post_format_base ) : false,