diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index d1536eb030..a562cdf241 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -96,11 +96,13 @@ function get_active_blog_for_user( $user_id ) { * The count is cached and updated twice daily. This is not a live count. * * @since MU 2.7 + * @since 4.8.0 The $network_id parameter has been added. * - * @return int + * @param int|null $network_id ID of the network. Default is the current network. + * @return int Number of active users on the network. */ -function get_user_count() { - return get_site_option( 'user_count' ); +function get_user_count( $network_id = null ) { + return get_network_option( $network_id, 'user_count' ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 83a68fea49..c50f431d5d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40370'; +$wp_version = '4.8-alpha-40371'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.