diff --git src/wp-includes/ms-functions.php src/wp-includes/ms-functions.php
index b0cd44c..a0026be 100644
|
|
function wpmu_validate_user_signup($user_name, $user_email) { |
531 | 531 | if ( $diff > 2 * DAY_IN_SECONDS ) |
532 | 532 | $wpdb->delete( $wpdb->signups, array( 'user_email' => $user_email ) ); |
533 | 533 | else |
534 | | $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.')); |
| 534 | $errors->add('user_email', __('That email address is currently pending activation and is not available for new registration. If you have 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.')); |
535 | 535 | } |
536 | 536 | |
537 | 537 | $result = array('user_name' => $user_name, 'orig_username' => $orig_username, 'user_email' => $user_email, 'errors' => $errors); |