Ensure sticky posts are WP_Post objects. props mdawaffe. see #21309.

git-svn-id: http://core.svn.wordpress.org/trunk@21569 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2012-08-21 04:04:54 +00:00
parent 80159bda68
commit d65b2caac9
1 changed files with 1 additions and 1 deletions

View File

@ -2750,7 +2750,7 @@ class WP_Query {
// Ignore sticky posts the current user cannot read or are not published.
if ( 'publish' != $sticky_post->post_status )
continue;
array_splice($this->posts, $sticky_offset, 0, array($sticky_post));
array_splice($this->posts, $sticky_offset, 0, array( get_post( $sticky_post ) ) );
$sticky_offset++;
}
}