From 766e44e68e17cbe61fac8c7069237bda3afaace1 Mon Sep 17 00:00:00 2001 From: dmsnell Date: Tue, 23 Sep 2025 07:38:30 +0000 Subject: [PATCH] Charset: Fix typo in docblock of _wp_is_valid_utf8_fallback(). Quick-fix for typo in docblock. Follow-up to: [60793]. Props mukesh27. See #63863. Built from https://develop.svn.wordpress.org/trunk@60794 git-svn-id: http://core.svn.wordpress.org/trunk@60130 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/compat-utf8.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/compat-utf8.php b/wp-includes/compat-utf8.php index 97a2a5c7b4..0dd5648232 100644 --- a/wp-includes/compat-utf8.php +++ b/wp-includes/compat-utf8.php @@ -230,7 +230,7 @@ function _wp_scan_utf8( string $bytes, int &$at, int &$invalid_length, ?int $max * @since 6.9.0 * @access private * - * @see wp_is_valid_utf6() + * @see wp_is_valid_utf8() * * @param string $bytes String which might contain text encoded as UTF-8. * @return bool Whether the provided bytes can decode as valid UTF-8. diff --git a/wp-includes/version.php b/wp-includes/version.php index 27310eb7bb..22733c07c2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60793'; +$wp_version = '6.9-alpha-60794'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.