From e413239e0a6f2cbfdbe8a44d9b9a7b3fdc1b7d73 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 15 Feb 2012 19:58:10 +0000 Subject: [PATCH] Use is_admin WP_Query propery, not is_admin(), when adding protected post statuses to the query. Allows for overriding on the parse_query hook. fixes #20049. git-svn-id: https://develop.svn.wordpress.org/trunk@19932 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/query.php b/wp-includes/query.php index e5b3ee498a..4174246e83 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -2476,7 +2476,7 @@ class WP_Query { $where .= " OR $wpdb->posts.post_status = '$state'"; } - if ( is_admin() ) { + if ( $this->is_admin ) { // Add protected states that should show in the admin all list. $admin_all_states = get_post_stati( array('protected' => true, 'show_in_admin_all_list' => true) ); foreach ( (array) $admin_all_states as $state )