mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-18 04:25:07 +00:00
Site Health: Remove esc_url()
used on "Debugging in WordPress" article URL in WP_Fatal_Error_Handler::display_default_error_template()
.
The function may not be available in some contexts, for example if a fatal error happens in `advanced-cache.php` drop-in. Props rob006. Fixes #49709. Built from https://develop.svn.wordpress.org/trunk@47515 git-svn-id: http://core.svn.wordpress.org/trunk@47290 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b9ef707d7d
commit
38e37b83df
@ -187,7 +187,7 @@ class WP_Fatal_Error_Handler {
|
|||||||
'<p>%s</p><p><a href="%s">%s</a></p>',
|
'<p>%s</p><p><a href="%s">%s</a></p>',
|
||||||
$message,
|
$message,
|
||||||
/* translators: Documentation explaining debugging in WordPress. */
|
/* translators: Documentation explaining debugging in WordPress. */
|
||||||
esc_url( __( 'https://wordpress.org/support/article/debugging-in-wordpress/' ) ),
|
__( 'https://wordpress.org/support/article/debugging-in-wordpress/' ),
|
||||||
__( 'Learn more about debugging in WordPress.' )
|
__( 'Learn more about debugging in WordPress.' )
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.5-alpha-47513';
|
$wp_version = '5.5-alpha-47515';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user