mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-07 14:14:36 +00:00
Site Health: Group WP_DEBUG-related constants together.
Props tmatsuur. Fixes #46955. git-svn-id: https://develop.svn.wordpress.org/trunk@45230 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -238,15 +238,15 @@ class WP_Debug_Data {
|
||||
'label' => 'WP_PLUGIN_DIR',
|
||||
'value' => WP_PLUGIN_DIR,
|
||||
),
|
||||
'WP_MAX_MEMORY_LIMIT' => array(
|
||||
'label' => 'WP_MAX_MEMORY_LIMIT',
|
||||
'value' => WP_MAX_MEMORY_LIMIT,
|
||||
),
|
||||
'WP_DEBUG' => array(
|
||||
'label' => 'WP_DEBUG',
|
||||
'value' => WP_DEBUG ? __( 'Enabled' ) : __( 'Disabled' ),
|
||||
'debug' => WP_DEBUG,
|
||||
),
|
||||
'WP_MAX_MEMORY_LIMIT' => array(
|
||||
'label' => 'WP_MAX_MEMORY_LIMIT',
|
||||
'value' => WP_MAX_MEMORY_LIMIT,
|
||||
),
|
||||
'WP_DEBUG_DISPLAY' => array(
|
||||
'label' => 'WP_DEBUG_DISPLAY',
|
||||
'value' => WP_DEBUG_DISPLAY ? __( 'Enabled' ) : __( 'Disabled' ),
|
||||
|
||||
Reference in New Issue
Block a user