diff --git a/src/wp-admin/includes/class-wp-debug-data.php b/src/wp-admin/includes/class-wp-debug-data.php
index a49ffc2922..ebbc7f52eb 100644
|
a
|
b
|
class WP_Debug_Data { |
| 193 | 193 | ), |
| 194 | 194 | 'WP_DEBUG_LOG' => array( |
| 195 | 195 | 'label' => 'WP_DEBUG_LOG', |
| 196 | | 'value' => ( ! defined( 'WP_DEBUG_LOG' ) ? __( 'Undefined' ) : ( WP_DEBUG_LOG ? __( 'Enabled' ) : __( 'Disabled' ) ) ), |
| | 196 | 'value' => ( ! defined( 'WP_DEBUG_LOG' ) ? __( 'Undefined' ) : ( is_string( WP_DEBUG_LOG ) ) ? WP_DEBUG_LOG : ( WP_DEBUG_LOG ? __( 'Enabled' ) : __( 'Disabled' ) ) ), |
| 197 | 197 | ), |
| 198 | 198 | 'SCRIPT_DEBUG' => array( |
| 199 | 199 | 'label' => 'SCRIPT_DEBUG', |