From 93b8b9bb4e3b37ad59b2117116b984f4d8d0bc96 Mon Sep 17 00:00:00 2001 From: Felix Arntz Date: Tue, 9 May 2017 16:00:44 +0000 Subject: [PATCH] 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 --- wp-includes/ms-functions.php | 7 ++++--- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index edc85617ef..ee0544378e 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -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 ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 6330803314..7adc36a5a2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.