diff --git a/src/wp-includes/update.php b/src/wp-includes/update.php
index dfb27b2aad..f004b4bcd1 100644
a
|
b
|
function wp_version_check( $extra_stats = array(), $force_check = false ) { |
98 | 98 | 'users' => $user_count, |
99 | 99 | 'multisite_enabled' => $multisite_enabled, |
100 | 100 | 'initial_db_version' => get_site_option( 'initial_db_version' ), |
| 101 | 'extensions' => get_loaded_extensions(), |
| 102 | 'platform_flags' => array( |
| 103 | 'os' => defined( 'PHP_OS_FAMILY' ) ? PHP_OS_FAMILY : PHP_OS, |
| 104 | 'bits' => PHP_INT_SIZE === 4 ? 32 : 64, |
| 105 | ), |
101 | 106 | ); |
102 | 107 | |
103 | 108 | /** |