From 255658fa31cb36222d4c917431c8e9cfc8850514 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 27 Sep 2017 13:07:46 +0000 Subject: [PATCH] Users: There is not, in fact, 12345 users on every WordPress installation. Props spacedmonkey See #38741 Built from https://develop.svn.wordpress.org/trunk@41614 git-svn-id: http://core.svn.wordpress.org/trunk@41449 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 1 - wp-includes/version.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 63551a227b..b4fbb50cba 100644 --- a/wp-includes/functions.php +++ b/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; diff --git a/wp-includes/version.php b/wp-includes/version.php index 5c03899d81..91e0106934 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41613'; +$wp_version = '4.9-alpha-41614'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.