mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
Site Health: Group WP_DEBUG
-related constants together.
Props tmatsuur. Fixes #46955. Built from https://develop.svn.wordpress.org/trunk@45230 git-svn-id: http://core.svn.wordpress.org/trunk@45039 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d89a302503
commit
604769cca5
@ -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' ),
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.2-beta3-45229';
|
||||
$wp_version = '5.2-beta3-45230';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user