From c4d0bd8f0ca68c0da7547ef608ae52bacb3f6f3d Mon Sep 17 00:00:00 2001 From: dd32 Date: Sat, 13 Mar 2010 07:47:20 +0000 Subject: [PATCH] Prevent PHP Notices on 404 pages git-svn-id: http://svn.automattic.com/wordpress/trunk@13691 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 e47a8db21d..c043904555 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -2665,7 +2665,7 @@ class WP_Query { } elseif ( $this->is_posts_page ) { $this->queried_object = & get_page(get_option('page_for_posts')); $this->queried_object_id = (int) $this->queried_object->ID; - } elseif ( $this->is_single ) { + } elseif ( $this->is_single && !is_null($this->post) ) { $this->queried_object = $this->post; $this->queried_object_id = (int) $this->post->ID; } elseif ( $this->is_page && !is_null($this->post) ) {