Multisite: Add `$network_id` parameter to `wp_maybe_update_network_site_counts()`.

This allows calling the function for a specific network correctly, for example after a site has been created for it or been removed from it.

Fixes #40384. See #38699.

Built from https://develop.svn.wordpress.org/trunk@40591


git-svn-id: http://core.svn.wordpress.org/trunk@40461 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Felix Arntz 2017-05-09 16:00:44 +00:00
parent 039d49a68a
commit 93b8b9bb4e
2 changed files with 5 additions and 4 deletions

View File

@ -2300,9 +2300,10 @@ function wp_update_network_counts( $network_id = null ) {
* on a network when a site is created or its status is updated.
*
* @since 3.7.0
* @since 4.8.0 The $network_id parameter has been added.
*/
function wp_maybe_update_network_site_counts() {
$is_small_network = ! wp_is_large_network( 'sites' );
function wp_maybe_update_network_site_counts( $network_id = null ) {
$is_small_network = ! wp_is_large_network( 'sites', $network_id );
/**
* Filters whether to update network site or user counts when a new site is created.
@ -2317,7 +2318,7 @@ function wp_maybe_update_network_site_counts() {
if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'sites' ) )
return;
wp_update_network_site_counts();
wp_update_network_site_counts( $network_id );
}
/**

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.8-alpha-40590';
$wp_version = '4.8-alpha-40591';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.