From acdd4a5cbb54d76021d4db5498cd6e7b2d83e7f3 Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Tue, 16 Jul 2024 14:35:16 +0000 Subject: [PATCH] HTML API: Fix "${var} in strings" deprecation notice in html5lib test. Changeset [58712] introduced the following compile time PHP deprecation notice on >= PHP 8.2 test runs: {{{ Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /var/www/tests/phpunit/tests/html-api/wpHtmlProcessorHtml5lib.php on line 257 PHPUnit 9.6.20 by Sebastian Bergmann and contributors. }}} The `${` syntax for string interpolation was deprecated in PHP 8.2 and should not be used anymore. Ref: https://wiki.php.net/rfc/deprecate_dollar_brace_string_interpolation Follow-up to [58712]. Props jrf. See #61530, #59654, #61576. Built from https://develop.svn.wordpress.org/trunk@58733 git-svn-id: http://core.svn.wordpress.org/trunk@58135 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 74dcb3c3c1..c15f275ced 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58732'; +$wp_version = '6.7-alpha-58733'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.