From 8b6cb321608735ed80f1dccdfe03ad4900afbad9 Mon Sep 17 00:00:00 2001 From: nacin Date: Wed, 10 Nov 2010 16:42:59 +0000 Subject: [PATCH] Ensure we have a valid post type object when checking for has_archive. props filosofo, fixes #15364. git-svn-id: http://svn.automattic.com/wordpress/trunk@16276 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 c90c3ec0d..309697b15 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1350,7 +1350,7 @@ class WP_Query extends WP_Object_Query { if ( !empty( $qv['post_type'] ) && ! is_array( $qv['post_type'] ) ) { $post_type_obj = get_post_type_object( $qv['post_type'] ); - if ( $post_type_obj->has_archive ) + if ( ! empty( $post_type_obj->has_archive ) ) $this->is_post_type_archive = true; }