Changeset 47122 for trunk/src/wp-admin/includes/class-wp-debug-data.php
- Timestamp:
- 01/29/2020 12:43:23 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r47083 r47122 581 581 if ( function_exists( 'phpversion' ) ) { 582 582 $php_version_debug = phpversion(); 583 // Whether PHP supports 64 bit583 // Whether PHP supports 64-bit. 584 584 $php64bit = ( PHP_INT_SIZE * 8 === 64 ); 585 585 … … 678 678 } 679 679 680 // SUHOSIN 680 // SUHOSIN. 681 681 $suhosin_loaded = ( extension_loaded( 'suhosin' ) || ( defined( 'SUHOSIN_PATCH' ) && constant( 'SUHOSIN_PATCH' ) ) ); 682 682 … … 687 687 ); 688 688 689 // Imagick 689 // Imagick. 690 690 $imagick_loaded = extension_loaded( 'imagick' ); 691 691 … … 1013 1013 $theme_author = $theme->author; 1014 1014 1015 // Sanitize 1015 // Sanitize. 1016 1016 $theme_author = wp_kses( $theme_author, array() ); 1017 1017 … … 1055 1055 } 1056 1056 1057 // Add more filesystem checks 1057 // Add more filesystem checks. 1058 1058 if ( defined( 'WPMU_PLUGIN_DIR' ) && is_dir( WPMU_PLUGIN_DIR ) ) { 1059 1059 $is_writable_wpmu_plugin_dir = wp_is_writable( WPMU_PLUGIN_DIR );
Note: See TracChangeset
for help on using the changeset viewer.