Changeset 5202
- Timestamp:
- 04/07/07 05:24:37 (1 year ago)
- Files:
-
- trunk/wp-includes/category.php (modified) (1 diff)
- trunk/wp-includes/plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/category.php
r5184 r5202 142 142 wp_cache_set( 'get_categories', $cache, 'category' ); 143 143 144 return apply_filters('get_categories', $categories, $r); 144 $categories = apply_filters('get_categories', $categories, $r); 145 return $categories; 145 146 } 146 147 trunk/wp-includes/plugin.php
r5170 r5202 75 75 global $wp_filter, $merged_filters; 76 76 77 if ( is _array($wp_filter['all']) )77 if ( isset($wp_filter['all']) && is_array($wp_filter['all']) ) 78 78 $wp_filter[$tag] = array_merge($wp_filter['all'], (array) $wp_filter[$tag]); 79 79
