From 39ccc3798dc77c98330d3d0f6ac87c1d556e38e1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 26 Oct 2023 20:33:22 +0000 Subject: [PATCH] Tests: Use a `@requires` annotation for `readonly()` function test. The function is only defined by WordPress core on PHP < 8.1. Follow-up to [51586]. See #59647. Built from https://develop.svn.wordpress.org/trunk@57011 git-svn-id: http://core.svn.wordpress.org/trunk@56522 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/php-compat/readonly.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/php-compat/readonly.php b/wp-includes/php-compat/readonly.php index 1c7fd9deff..16f0fab2c0 100644 --- a/wp-includes/php-compat/readonly.php +++ b/wp-includes/php-compat/readonly.php @@ -4,7 +4,7 @@ * to `wp_readonly()` in WordPress 5.9.0. * * In order to avoid PHP parser errors, this function was extracted - * to this separate file and is only included conditionally on PHP 8.1. + * to this separate file and is only included conditionally on PHP < 8.1. * * Including this file on PHP >= 8.1 results in a fatal error. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 50b465194d..3d8f7bdd23 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57009'; +$wp_version = '6.5-alpha-57011'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.