Ensure we have a valid post type object when checking for has_archive. props filosofo, fixes #15364.

git-svn-id: https://develop.svn.wordpress.org/trunk@16276 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-11-10 16:42:59 +00:00
parent af72ac38ff
commit d50013b957
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}