Changeset 4280

Show
Ignore:
Timestamp:
10/03/06 22:04:34 (2 years ago)
Author:
markjaquith
Message:

cast to array. props to Denis de Bernardy, Nazgul. fixes #3179

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.0/wp-includes/template-functions-category.php

    r3338 r4280  
    319319    $thelist = ""; 
    320320 
    321     foreach ( $categories as $category ) { 
     321    foreach ( (array) $categories as $category ) { 
    322322        if ( ( intval($hide_empty) == 0 || $category->category_count) && (!$hierarchical || $category->category_parent == $child_of) ) { 
    323323            $num_found++;