mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 11:35:48 +00:00
Site Health: Include new WP_DEVELOPMENT_MODE
in the list of constants.
Follow-up to [56042]. Props kebbet. Fixes #58646. See #57487. Built from https://develop.svn.wordpress.org/trunk@56079 git-svn-id: http://core.svn.wordpress.org/trunk@55591 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
26a104cee8
commit
905cff1733
@ -323,6 +323,11 @@ class WP_Debug_Data {
|
||||
'value' => $wp_environment_type,
|
||||
'debug' => $wp_environment_type,
|
||||
),
|
||||
'WP_DEVELOPMENT_MODE' => array(
|
||||
'label' => 'WP_DEVELOPMENT_MODE',
|
||||
'value' => WP_DEVELOPMENT_MODE ? WP_DEVELOPMENT_MODE : __( 'Disabled' ),
|
||||
'debug' => WP_DEVELOPMENT_MODE,
|
||||
),
|
||||
'DB_CHARSET' => array(
|
||||
'label' => 'DB_CHARSET',
|
||||
'value' => ( defined( 'DB_CHARSET' ) ? DB_CHARSET : __( 'Undefined' ) ),
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-56078';
|
||||
$wp_version = '6.3-alpha-56079';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
x
Reference in New Issue
Block a user