Reorder placeholders for consistency. see [29806].

see #21089.

git-svn-id: https://develop.svn.wordpress.org/trunk@29807 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-10-02 01:37:05 +00:00
parent 3a11531451
commit c313878af2
1 changed files with 4 additions and 4 deletions

View File

@ -284,15 +284,15 @@ function wp_new_blog_notification($blog_title, $blog_url, $user_id, $password) {
You can log in to the administrator account with the following information: You can log in to the administrator account with the following information:
Log in here: %4\$s Log in here: %2\$s
Username: %2\$s Username: %3\$s
Password: %3\$s Password: %4\$s
We hope you enjoy your new site. Thanks! We hope you enjoy your new site. Thanks!
--The WordPress Team --The WordPress Team
https://wordpress.org/ https://wordpress.org/
"), $blog_url, $name, $password, $login_url ); "), $blog_url, $login_url, $name, $password );
@wp_mail($email, __('New WordPress Site'), $message); @wp_mail($email, __('New WordPress Site'), $message);
} }