From b18df579370853589166a296aedb48d8e6c2ca86 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 28 Dec 2010 22:34:15 +0000 Subject: [PATCH] Ignore an empty pagename when correcting is_* for page_on_front requests. Props donalmacarthur, SergeyBiryukov, filosofo. fixes #16002 git-svn-id: http://svn.automattic.com/wordpress/trunk@17162 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/query.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-includes/query.php b/wp-includes/query.php index b82b40501..fd81f2d40 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1559,6 +1559,9 @@ class WP_Query { // Correct is_* for page_on_front and page_for_posts if ( $this->is_home && 'page' == get_option('show_on_front') && get_option('page_on_front') ) { $_query = wp_parse_args($query); + // pagename can be set and empty depending on matched rewrite rules. Ignore an empty pagename. + if ( isset($_query['pagename']) && '' == $_query['pagename'] ) + unset($_query['pagename']); if ( empty($_query) || !array_diff( array_keys($_query), array('preview', 'page', 'paged', 'cpage') ) ) { $this->is_page = true; $this->is_home = false;