Make WordPress Core


Ignore:
Timestamp:
03/24/2004 02:45:48 PM (21 years ago)
Author:
emc3
Message:

Check $comment_counts before using.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-blog-header.php

    r979 r992  
    450450        GROUP BY ID");
    451451   
    452     foreach ($comment_counts as $comment_count) {
    453         $comment_count_cache["$comment_count->ID"] = $comment_count->ccount;
    454     }
     452    if ($comment_counts) {
     453        foreach ($comment_counts as $comment_count) {
     454            $comment_count_cache["$comment_count->ID"] = $comment_count->ccount;
     455        }
     456    }
    455457
    456458    // Get post-meta info
Note: See TracChangeset for help on using the changeset viewer.