From cf21cf2a89e4c6053dfc8728b23a106a60d57571 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 23 Nov 2010 00:32:19 +0000 Subject: [PATCH] Cast term_id to int for queried_object_id. props wojtek.szkutnik, fixes #14590. git-svn-id: https://develop.svn.wordpress.org/trunk@16542 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 f52919bfc8..9bf4faa3ab 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -2673,7 +2673,7 @@ class WP_Query { if ( $term && ! is_wp_error($term) ) { $this->queried_object = $term; - $this->queried_object_id = $term->term_id; + $this->queried_object_id = (int) $term->term_id; } } elseif ( $this->is_posts_page ) { $page_for_posts = get_option('page_for_posts');