From 854e55b852c6ceb9ab9e9131eaaa307754de0f13 Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Thu, 19 Sep 2024 18:14:14 +0000 Subject: [PATCH] Tests: Remove use of E_STRICT. The `E_STRICT` constant is deprecated as of PHP 8.4 and will be removed in PHP 9.0. The error level hasn't been in use since PHP 8.0 anyway, so removing the exclusion from the `error_reporting()` setting in the `install.php` script used in the tests should make no difference in practice. Ref: * https://wiki.php.net/rfc/deprecations_php_8_4#remove_e_strict_error_level_and_deprecate_e_strict_constant Follow-up to [25002]. Props jrf. See #62061. Built from https://develop.svn.wordpress.org/trunk@59068 git-svn-id: http://core.svn.wordpress.org/trunk@58464 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 6bd8a700a5..8b842cf60c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-59067'; +$wp_version = '6.7-alpha-59068'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.