Skip to content

Commit dfd1bd1

Browse files
committed
Multisite: Improve wording when creating a user with a reserved email address.
This updates the user-facing message displayed when attempting to create a user with an email address that is already pending activation in a multisite network. Props realloc, valendesigns, jeremyfelt, SirLouen, westonruter, trepmal, johnbillion, BurlesonBrad, garrett-eclipse, spacedmonkey, westonruter. Fixes #30227. git-svn-id: https://develop.svn.wordpress.org/trunk@61074 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 8defb1f commit dfd1bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/ms-functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ function wpmu_validate_user_signup( $user_name, $user_email ) {
570570
if ( $diff > 2 * DAY_IN_SECONDS ) {
571571
$wpdb->delete( $wpdb->signups, array( 'user_email' => $user_email ) );
572572
} else {
573-
$errors->add( 'user_email', __( 'That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing.' ) );
573+
$errors->add( 'user_email', __( 'That email address is pending activation and is not available for new registration. If you made a previous attempt with this email address, please check your inbox for an activation email. If left unconfirmed, it will become available in a couple of days.' ) );
574574
}
575575
}
576576

0 commit comments

Comments
 (0)