From a32bc07082dc6419c31259901a8b6bea5e3e9f68 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 19 Nov 2008 20:48:05 +0000 Subject: [PATCH] Use is_numeric instead of is_integer. Props johnconners. fixes #8284 git-svn-id: https://develop.svn.wordpress.org/trunk@9795 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 6b03ea43ea..b4a53f9bc3 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1726,7 +1726,7 @@ class WP_Query { $where .= " AND {$wpdb->posts}.ID NOT IN ($post__not_in)"; } - if ( is_integer($q['post_parent']) ) + if ( is_numeric($q['post_parent']) ) $where .= $wpdb->prepare( " AND $wpdb->posts.post_parent = %d ", $q['post_parent'] ); if ( $q['page_id'] ) {