Changeset 29806 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 10/02/2014 01:27:57 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r29630 r29806 278 278 $email = $user->user_email; 279 279 $name = $user->user_login; 280 $message = sprintf(__("Your new WordPress site has been successfully set up at: 280 $login_url = wp_login_url(); 281 $message = sprintf( __( "Your new WordPress site has been successfully set up at: 281 282 282 283 %1\$s … … 284 285 You can log in to the administrator account with the following information: 285 286 287 Log in here: %4\$s 286 288 Username: %2\$s 287 289 Password: %3\$s … … 291 293 --The WordPress Team 292 294 https://wordpress.org/ 293 "), $blog_url, $name, $password );295 "), $blog_url, $name, $password, $login_url ); 294 296 295 297 @wp_mail($email, __('New WordPress Site'), $message);
Note: See TracChangeset
for help on using the changeset viewer.