Changeset 21403 for trunk/wp-includes/load.php
- Timestamp:
- 08/02/2012 06:31:14 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/load.php
r21363 r21403 382 382 */ 383 383 function wp_start_object_cache() { 384 global $_wp_using_ext_object_cache ;384 global $_wp_using_ext_object_cache, $blog_id; 385 385 386 386 $first_init = false; … … 404 404 // Reset signals to the cache that global IDs have changed and it may need to update keys 405 405 // and cleanup caches. 406 if ( ! $first_init && function_exists('wp_cache_reset') )407 wp_cache_ reset();406 if ( ! $first_init && function_exists( 'wp_cache_switch_to_blog' ) ) 407 wp_cache_switch_to_blog( $blog_id ); 408 408 else 409 409 wp_cache_init();
Note: See TracChangeset
for help on using the changeset viewer.