Restore global post when resetting the query. Props ionfish. fixes #5439

git-svn-id: https://develop.svn.wordpress.org/trunk@6653 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-01-25 01:41:57 +00:00
parent 1edf3683ff
commit 4179e52a2b
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ function wp_reset_query() {
$GLOBALS['wp_query'] =& $GLOBALS['wp_the_query'];
global $wp_query;
if ( !empty($wp_query->post) ) {
$GLOBALS['post'] = $wp_query->post;
$GLOBALS['post'] = $wp_query->next_post();
setup_postdata($wp_query->post);
}
}