From 5df258b6a623afc86be2cea99f103f03d480eebb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 30 Dec 2023 11:44:20 +0000 Subject: [PATCH] Docs: Correct the variable name passed to the `determine_locale` filter. Follow-up to [43776], [44134]. Props truptikanzariya. Fixes #60167. git-svn-id: https://develop.svn.wordpress.org/trunk@57233 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/l10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/l10n.php b/src/wp-includes/l10n.php index a085d4483f..67bfb1a26e 100644 --- a/src/wp-includes/l10n.php +++ b/src/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 ); }