From 4f89c113504cd7efeed738b8ec2716026663a4e0 Mon Sep 17 00:00:00 2001 From: Dougal Campbell Date: Wed, 24 Mar 2004 14:45:48 +0000 Subject: [PATCH] Check $comment_counts before using. git-svn-id: https://develop.svn.wordpress.org/trunk@992 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-blog-header.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wp-blog-header.php b/wp-blog-header.php index e4f1f760c8..698495e84f 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -449,9 +449,11 @@ if ($posts) { WHERE post_status = 'publish' AND ID IN ($post_id_list) GROUP BY ID"); - foreach ($comment_counts as $comment_count) { - $comment_count_cache["$comment_count->ID"] = $comment_count->ccount; - } + if ($comment_counts) { + foreach ($comment_counts as $comment_count) { + $comment_count_cache["$comment_count->ID"] = $comment_count->ccount; + } + } // Get post-meta info if ( $meta_list = $wpdb->get_results("