Ticket #21089: 21089.2.patch
| File 21089.2.patch, 2.1 KB (added by georgestephanis, 11 months ago) |
|---|
-
wp-includes/ms-functions.php
1223 1223 BLOG_URL 1224 1224 1225 1225 You can log in to the administrator account with the following information: 1226 1227 Log in here: BLOG_URLwp-login.php 1226 1228 Username: USERNAME 1227 1229 Password: PASSWORD 1228 Log in here: BLOG_URLwp-login.php1229 1230 1230 1231 We hope you enjoy your new site. Thanks! 1231 1232 -
wp-admin/includes/upgrade.php
318 318 * @param int $user_id User ID. 319 319 * @param string $password User's Password. 320 320 */ 321 function wp_new_blog_notification( $blog_title, $blog_url, $user_id, $password) {322 $user = new WP_User( $user_id);321 function wp_new_blog_notification( $blog_title, $blog_url, $user_id, $password ) { 322 $user = new WP_User( $user_id ); 323 323 $email = $user->user_email; 324 324 $name = $user->user_login; 325 $message = sprintf(__("Your new WordPress site has been successfully set up at: 325 $login_url = wp_login_url(); 326 $message = sprintf( __( "Your new WordPress site has been successfully set up at: 326 327 327 328 %1\$s 328 329 329 330 You can log in to the administrator account with the following information: 330 331 332 Log in here: %4\$s 331 333 Username: %2\$s 332 334 Password: %3\$s 333 335 … … 335 337 336 338 --The WordPress Team 337 339 http://wordpress.org/ 338 " ), $blog_url, $name, $password);340 " ), $blog_url, $name, $password, $login_url ); 339 341 340 @wp_mail( $email, __('New WordPress Site'), $message);342 @wp_mail( $email, __( 'New WordPress Site' ), $message ); 341 343 } 342 344 endif; 343 345 -
wp-admin/includes/schema.php
873 873 BLOG_URL 874 874 875 875 You can log in to the administrator account with the following information: 876 877 Log in here: BLOG_URLwp-login.php 876 878 Username: USERNAME 877 879 Password: PASSWORD 878 Log in here: BLOG_URLwp-login.php879 880 880 881 We hope you enjoy your new site. Thanks! 881 882
