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
This commit is contained in:
Andrew Nacin 2010-11-23 00:32:19 +00:00
parent c05b55b066
commit cf21cf2a89
1 changed files with 1 additions and 1 deletions

View File

@ -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');