Changeset 5163
- Timestamp:
- 04/01/2007 08:44:10 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r5150 r5163 600 600 601 601 function clean_post_cache($id) { 602 global $post_cache, $post_meta_cache, $category_cache, $ blog_id;602 global $post_cache, $post_meta_cache, $category_cache, $tag_cache, $blog_id; 603 603 604 604 if ( isset( $post_cache[$blog_id][$id] ) ) … … 610 610 if ( isset( $category_cache[$blog_id][$id]) ) 611 611 unset ( $category_cache[$blog_id][$id] ); 612 613 if ( isset( $tag_cache[$blog_id][$id]) ) 614 unset ( $tag_cache[$blog_id][$id] ); 612 615 } 613 616
Note: See TracChangeset
for help on using the changeset viewer.