From 606c799d7ac7f6288f9ea0e07cf57acaa3babd2d Mon Sep 17 00:00:00 2001 From: Dennis Ploetner Date: Sat, 28 Jun 2025 13:38:27 +0200 Subject: [PATCH 1/2] Error message changed --- src/wp-includes/ms-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/ms-functions.php b/src/wp-includes/ms-functions.php index d11a1ae64396c..6683349bb86ec 100644 --- a/src/wp-includes/ms-functions.php +++ b/src/wp-includes/ms-functions.php @@ -570,7 +570,7 @@ function wpmu_validate_user_signup( $user_name, $user_email ) { if ( $diff > 2 * DAY_IN_SECONDS ) { $wpdb->delete( $wpdb->signups, array( 'user_email' => $user_email ) ); } else { - $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.' ) ); + $errors->add( 'user_email', __( 'That email address is pending activation and 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.' ) ); } } From 34f81f90c2987105730fcdfbb2ed976089c5e387 Mon Sep 17 00:00:00 2001 From: Dennis Ploetner Date: Mon, 27 Oct 2025 16:40:01 +0100 Subject: [PATCH 2/2] Update src/wp-includes/ms-functions.php Co-authored-by: Weston Ruter --- src/wp-includes/ms-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/ms-functions.php b/src/wp-includes/ms-functions.php index 6683349bb86ec..9112bc4954966 100644 --- a/src/wp-includes/ms-functions.php +++ b/src/wp-includes/ms-functions.php @@ -570,7 +570,7 @@ function wpmu_validate_user_signup( $user_name, $user_email ) { if ( $diff > 2 * DAY_IN_SECONDS ) { $wpdb->delete( $wpdb->signups, array( 'user_email' => $user_email ) ); } else { - $errors->add( 'user_email', __( 'That email address is pending activation and 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.' ) ); + $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.' ) ); } }