Networks and Sites: Remove invalidation of unused cache keys in `clean_blog_cache()`.
Props spacedmonkey, flixos90, thamaraiselvam. Fixes #40363. Built from https://develop.svn.wordpress.org/trunk@46990 git-svn-id: http://core.svn.wordpress.org/trunk@46790 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4edec193bc
commit
5f6a36ceb6
|
@ -1005,8 +1005,6 @@ function clean_blog_cache( $blog ) {
|
|||
wp_cache_delete( $blog_id . 'short', 'blog-details' );
|
||||
wp_cache_delete( $domain_path_key, 'blog-lookup' );
|
||||
wp_cache_delete( $domain_path_key, 'blog-id-cache' );
|
||||
wp_cache_delete( 'current_blog_' . $blog->domain, 'site-options' );
|
||||
wp_cache_delete( 'current_blog_' . $blog->domain . $blog->path, 'site-options' );
|
||||
wp_cache_delete( $blog_id, 'blog_meta' );
|
||||
|
||||
/**
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.4-alpha-46989';
|
||||
$wp_version = '5.4-alpha-46990';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue