From c44cd2b99954ce3b500eb19ef50ae50623e2447a Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 18 Mar 2010 22:34:58 +0000 Subject: [PATCH] Correct a copy-paste error in wp_manage_posts_columns(). git-svn-id: https://develop.svn.wordpress.org/trunk@13759 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 9d312719ca..6a6658b077 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -609,7 +609,7 @@ function wp_manage_posts_columns( $screen = '') { $posts_columns['author'] = __('Author'); if ( empty($post_type) || is_object_in_taxonomy($post_type, 'category') ) $posts_columns['categories'] = __('Categories'); - if ( empty($post_type) || is_object_in_taxonomy($post_type, 'category') ) + if ( empty($post_type) || is_object_in_taxonomy($post_type, 'post_tag') ) $posts_columns['tags'] = __('Tags'); $post_status = !empty($_REQUEST['post_status']) ? $_REQUEST['post_status'] : 'all'; if ( !in_array( $post_status, array('pending', 'draft', 'future') ) && ( empty($post_type) || post_type_supports($post_type, 'comments') ) )