Make WordPress Core

Changeset 61074


Ignore:
Timestamp:
10/27/2025 04:33:41 PM (7 weeks ago)
Author:
westonruter
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-functions.php

    r60450 r61074  
    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    }
Note: See TracChangeset for help on using the changeset viewer.