Fix string offset PHP 5.4 error by normalizing $user_count to always be an integer. props ericmann. see #20966 for trunk.
git-svn-id: http://core.svn.wordpress.org/trunk@21105 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
efb07c689e
commit
69e9cf2888
|
@ -58,6 +58,7 @@ function wp_version_check() {
|
|||
$multisite_enabled = 1;
|
||||
} else {
|
||||
$user_count = count_users( );
|
||||
$user_count = $user_count['total_users'];
|
||||
$multisite_enabled = 0;
|
||||
$num_blogs = 1;
|
||||
$wp_install = home_url( '/' );
|
||||
|
@ -70,7 +71,7 @@ function wp_version_check() {
|
|||
'mysql' => $mysql_version,
|
||||
'local_package' => isset( $wp_local_package ) ? $wp_local_package : '',
|
||||
'blogs' => $num_blogs,
|
||||
'users' => $user_count['total_users'],
|
||||
'users' => $user_count,
|
||||
'multisite_enabled' => $multisite_enabled
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue