From ced2ac5437215fd9380e3b0421387d996037ab4e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 30 Dec 2023 11:46:24 +0000 Subject: [PATCH] Docs: Correct the variable name passed to the `determine_locale` filter. Follow-up to [43776], [44134]. Props truptikanzariya. Fixes #60167. Built from https://develop.svn.wordpress.org/trunk@57233 git-svn-id: http://core.svn.wordpress.org/trunk@56739 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/l10n.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index a085d4483f..67bfb1a26e 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -161,7 +161,7 @@ function determine_locale() { * * @since 5.0.0 * - * @param string $locale The locale. + * @param string $determined_locale The locale. */ return apply_filters( 'determine_locale', $determined_locale ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 1e02536a68..262d4d8b2a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57232'; +$wp_version = '6.5-alpha-57233'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.