From f51b4579d53e87111cdb61da8362dc3705e73165 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 2 Feb 2020 05:34:05 +0000 Subject: [PATCH] Docs: Fix typo in a comment with `WP_DEBUG_DISPLAY` description. See #48303. Built from https://develop.svn.wordpress.org/trunk@47165 git-svn-id: http://core.svn.wordpress.org/trunk@46965 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/default-constants.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index 5a367cd3c6..98c8e48369 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -77,7 +77,7 @@ function wp_initial_constants() { define( 'WP_DEBUG', false ); } - // Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php use the globally configured setting + // Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php to use the globally configured setting // for 'display_errors' and not force errors to be displayed. Use false to force 'display_errors' off. if ( ! defined( 'WP_DEBUG_DISPLAY' ) ) { define( 'WP_DEBUG_DISPLAY', true ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 4819775cef..6ed64f9b35 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47164'; +$wp_version = '5.4-alpha-47165'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.