From bc1d44536cc8472969a534921dfdbc8c2955ae06 Mon Sep 17 00:00:00 2001 From: Daniel Walmsley Date: Wed, 9 Nov 2016 15:52:44 -0800 Subject: [PATCH] Set the user count to -1 for every large networks --- class.jetpack.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class.jetpack.php b/class.jetpack.php index 49d5f2b06f008..8a32ef1b1c6e6 100644 --- a/class.jetpack.php +++ b/class.jetpack.php @@ -2856,7 +2856,7 @@ private static function get_site_user_count() { if ( function_exists( 'wp_is_large_network' ) ) { if ( wp_is_large_network( 'users' ) ) { - return 10101; // Not a real value but should tell us that we are dealing with a large network. + return -1; // Not a real value but should tell us that we are dealing with a large network. } } if ( false === ( $user_count = get_transient( 'jetpack_site_user_count' ) ) ) {