Changeset 4849
- Timestamp:
- 01/31/07 05:58:40 (1 year ago)
- Files:
-
- branches/2.1/wp-includes/category.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/wp-includes/category.php
r4722 r4849 34 34 if ( $cache = wp_cache_get( 'get_categories', 'category' ) ) 35 35 if ( isset( $cache[ $key ] ) ) 36 return $cache[ $key ];36 return apply_filters('get_categories', $cache[$key], $r); 37 37 38 38 $where = 'cat_ID > 0';
