Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/wp-includes/ms-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -1680,7 +1680,7 @@ function wpmu_welcome_notification(

Username: USERNAME
Password: PASSWORD
Log in here: BLOG_URLwp-login.php
Log in here: LOGINLINK

We hope you enjoy your new site. Thanks!

Expand All @@ -1695,6 +1695,7 @@ function wpmu_welcome_notification(
$welcome_email = str_replace( 'BLOG_URL', $url, $welcome_email );
$welcome_email = str_replace( 'USERNAME', $user->user_login, $welcome_email );
$welcome_email = str_replace( 'PASSWORD', $password, $welcome_email );
$welcome_email = str_replace( 'LOGINLINK', wp_login_url(), $welcome_email );

/**
* Filters the content of the welcome email sent to the site administrator after site activation.
Expand Down
Loading