From bd2ed2c1908e5023cefa933cb64394d04265c600 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 25 May 2009 05:36:48 +0000 Subject: [PATCH] Restore LEFT JOIN for post_status_join. fixes #9851 see #9720 git-svn-id: http://svn.automattic.com/wordpress/trunk@11452 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 e8fbeecfa..2e2aa5aeb 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -2114,7 +2114,7 @@ class WP_Query { $statuswheres[] = "(" . join( ' OR ', $p_status ) . ")"; } if ( $post_status_join ) { - $join .= " JOIN $wpdb->posts AS p2 ON ($wpdb->posts.post_parent = p2.ID) "; + $join .= " LEFT JOIN $wpdb->posts AS p2 ON ($wpdb->posts.post_parent = p2.ID) "; foreach ( $statuswheres as $index => $statuswhere ) $statuswheres[$index] = "($statuswhere OR ($wpdb->posts.post_status = 'inherit' AND " . str_replace($wpdb->posts, 'p2', $statuswhere) . "))"; }