diff --git src/wp-includes/update.php src/wp-includes/update.php
index 04c8aa3ec2..148f72d1a7 100644
|
|
|
function wp_version_check( $extra_stats = array(), $force_check = false ) { |
| 99 | 99 | 'users' => get_user_count(), |
| 100 | 100 | 'multisite_enabled' => $multisite_enabled, |
| 101 | 101 | 'initial_db_version' => get_site_option( 'initial_db_version' ), |
| | 102 | 'extensions' => array_combine( get_loaded_extensions(), array_map( 'phpversion', get_loaded_extensions() ) ), |
| | 103 | 'platform_flags' => array( |
| | 104 | 'os' => PHP_OS, |
| | 105 | 'bits' => PHP_INT_SIZE === 4 ? 32 : 64, |
| | 106 | ), |
| | 107 | 'gd_info' => extension_loaded( 'gd' ) ? gd_info() : array(), |
| | 108 | 'imagick_info' => extension_loaded( 'imagick' ) ? Imagick::queryFormats() : array(), |
| 102 | 109 | ); |
| 103 | 110 | |
| 104 | 111 | /** |