diff --git a/wp-includes/version.php b/wp-includes/version.php index 6ae28b5172..fc9f86a754 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta2-41910'; +$wp_version = '4.9-beta2-41911'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-signup.php b/wp-signup.php index 352f9b8330..f0f14f539d 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -470,10 +470,13 @@ function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $ ?>

%2$s is your new site. Log in as “%4$s” using your existing password.' ), - esc_url( $home_url ), - untrailingslashit( $domain . $path ), + /* translators: 1: link to new site, 2: login URL, 3: username */ + __( '%1$s is your new site. Log in as “%3$s” using your existing password.' ), + sprintf( + '%s', + esc_url( $home_url ), + untrailingslashit( $domain . $path ) + ), esc_url( $login_url ), $user_name ); ?>