Changeset 4716

Show
Ignore:
Timestamp:
01/10/07 20:42:17 (1 year ago)
Author:
ryan
Message:

Cast to array to avoid warning. fixes #3556

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/category.php

    r4707 r4716  
    295295 
    296296    // Transfer the touched cells  
    297     foreach ( $cat_items as $id => $items ) 
     297    foreach ( (array) $cat_items as $id => $items ) 
    298298        if ( isset($cats[$id]) ) 
    299299            $cats[$id]->{'link' == $type ? 'link_count' : 'category_count'} = count($items);