diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index 72a74ff0ac..b4115e10a3 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -31,13 +31,7 @@ function get_locale() { global $locale, $wp_local_package; if ( isset( $locale ) ) { - /** - * Filters the locale ID of the WordPress installation. - * - * @since 1.5.0 - * - * @param string $locale The locale ID. - */ + /** This filter is documented in wp-includes/l10n.php */ return apply_filters( 'locale', $locale ); } @@ -76,7 +70,13 @@ function get_locale() { $locale = 'en_US'; } - /** This filter is documented in wp-includes/l10n.php */ + /** + * Filters the locale ID of the WordPress installation. + * + * @since 1.5.0 + * + * @param string $locale The locale ID. + */ return apply_filters( 'locale', $locale ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 4544a59fd8..e6be5cc7c1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-49858'; +$wp_version = '5.7-alpha-49859'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.