From 3e9cc3ebd99b242cbf3d92f01a49ef459f3b4d68 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 26 Apr 2010 22:12:28 +0000 Subject: [PATCH] The read_post cap cannot be checked for sticky posts because not logged in users don't have any caps. see #11197 git-svn-id: https://develop.svn.wordpress.org/trunk@14245 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 f2c42f6a93..69f19b2962 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -2486,7 +2486,7 @@ class WP_Query { $stickies = $wpdb->get_results( "SELECT * FROM $wpdb->posts WHERE $wpdb->posts.ID IN ($stickies__in) $stickies_where" ); foreach ( $stickies as $sticky_post ) { // Ignore sticky posts the current user cannot read or are not published. - if ( !current_user_can('read_post', $sticky_post->ID) || 'publish' != $sticky_post->post_status ) + if ( 'publish' != $sticky_post->post_status ) continue; array_splice($this->posts, $sticky_offset, 0, array($sticky_post)); $sticky_offset++;