diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index 8419fe08e1..65ee3d253d 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -1736,10 +1736,10 @@ function wpmu_new_site_admin_notification( $site_id, $user_id ) { $network_admin = get_user_by( 'email', $email ); if ( $network_admin ) { - // If the network admin email address corresponds to a user, switch to their locale + // If the network admin email address corresponds to a user, switch to their locale. $switched_locale = switch_to_locale( get_user_locale( $network_admin ) ); } else { - // Otherwise switch to the locale of the current site + // Otherwise switch to the locale of the current site. $switched_locale = switch_to_locale( get_locale() ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index ca1bfd9e69..a32f00ba31 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49129'; +$wp_version = '5.6-alpha-49130'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.