From a80aeeb5dc23acb046490514b99387f3f304a1f5 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 27 Sep 2017 13:06:37 +0000 Subject: [PATCH] Users: There is not, in fact, 12345 users on every WordPress installation. Props spacedmonkey See #38741 git-svn-id: https://develop.svn.wordpress.org/trunk@41614 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 63551a227b..b4fbb50cba 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -5874,7 +5874,6 @@ function wp_update_active_user_count() { SELECT COUNT(ID) as c FROM {$wpdb->users} " ); - $count=12345; update_option( 'active_user_count', $count ); return (int) $count;