From 411cd2f5b3df00cfa13a74c0f012c37a03d5777f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 8 Feb 2023 17:08:21 +0000 Subject: [PATCH] Docs: Correct `@since` tag for `WP_Locale_Switcher::$stack`. The `WP_Locale_Switcher::$locales` property was replaced with `::$stack` in WordPress 6.2. Follow-up to [38961], [55161], [55224]. See #57123. Built from https://develop.svn.wordpress.org/trunk@55298 git-svn-id: http://core.svn.wordpress.org/trunk@54831 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-locale-switcher.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-locale-switcher.php b/wp-includes/class-wp-locale-switcher.php index a99433e38d..75e344f19f 100644 --- a/wp-includes/class-wp-locale-switcher.php +++ b/wp-includes/class-wp-locale-switcher.php @@ -17,7 +17,7 @@ class WP_Locale_Switcher { /** * Locale switching stack. * - * @since 4.7.0 + * @since 6.2.0 * @var array */ private $stack = array(); diff --git a/wp-includes/version.php b/wp-includes/version.php index 488a05f34d..44af007a58 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-beta1-55297'; +$wp_version = '6.2-beta1-55298'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.