Ticket #27192: 27192.7.diff
File 27192.7.diff, 1.7 KB (added by , 11 years ago) |
---|
-
src/wp-includes/ms-functions.php
1468 1468 1469 1469 You can log in to the administrator account with the following information: 1470 1470 Username: USERNAME 1471 Password: PASSWORD1471 Temporary Password: PASSWORD 1472 1472 Log in here: BLOG_URLwp-login.php 1473 1473 1474 Please change this temporary password when logging in for the first time. 1475 1474 1476 We hope you enjoy your new site. Thanks! 1475 1477 1476 1478 --The Team @ SITE_NAME' ); … … 2118 2120 remove_filter( 'site_option_welcome_user_email', 'welcome_user_msg_filter' ); 2119 2121 $text = __( 'Dear User, 2120 2122 2121 Your new account is set up.2123 Your new account has been successfully set up: 2122 2124 2123 2125 You can log in with the following information: 2124 2126 Username: USERNAME 2125 Password: PASSWORD2127 Temporary Password: PASSWORD 2126 2128 LOGINLINK 2127 2129 2130 Please change this temporary password when logging in for the first time. 2131 2128 2132 Thanks! 2129 2133 2130 2134 --The Team @ SITE_NAME' ); -
src/wp-includes/pluggable.php
1299 1299 return; 1300 1300 1301 1301 $message = sprintf(__('Username: %s'), $user->user_login) . "\r\n"; 1302 $message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n"; 1302 $message .= sprintf(__('Temporary Password: %s'), $plaintext_pass) . "\r\n\r\n"; 1303 $message .= __( 'Please change this temporary password when logging in for the first time.' ) . "\r\n\r\n"; 1303 1304 $message .= wp_login_url() . "\r\n"; 1304 1305 1305 1306 wp_mail($user->user_email, sprintf(__('[%s] Your username and password'), $blogname), $message);