Site Health: If `WP_DEBUG_LOG` contains a file path, display it on Site Info tab.
Props xkon, knutsp, ocean90. Fixes #46692. Built from https://develop.svn.wordpress.org/trunk@45079 git-svn-id: http://core.svn.wordpress.org/trunk@44888 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c241c16846
commit
5cca79f806
|
@ -193,7 +193,7 @@ class WP_Debug_Data {
|
|||
),
|
||||
'WP_DEBUG_LOG' => array(
|
||||
'label' => 'WP_DEBUG_LOG',
|
||||
'value' => ( ! defined( 'WP_DEBUG_LOG' ) ? __( 'Undefined' ) : ( WP_DEBUG_LOG ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
|
||||
'value' => ( is_string( WP_DEBUG_LOG ) ? WP_DEBUG_LOG : ( WP_DEBUG_LOG ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
|
||||
),
|
||||
'SCRIPT_DEBUG' => array(
|
||||
'label' => 'SCRIPT_DEBUG',
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.2-beta1-45078';
|
||||
$wp_version = '5.2-beta1-45079';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue