mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Multisite: Validate email before checking against banned domains.
Previously, an invalid email could result in an undefined index when attempting to determine the email domain. Props ocean90. See #39915. git-svn-id: https://develop.svn.wordpress.org/trunk@40594 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -442,8 +442,11 @@ function wpmu_validate_user_signup($user_name, $user_email) {
|
||||
$errors->add( 'user_name', __( 'Sorry, that username is not allowed.' ) );
|
||||
}
|
||||
|
||||
if ( is_email_address_unsafe( $user_email ) )
|
||||
$errors->add('user_email', __('You cannot use that email address to signup. We are having problems with them blocking some of our email. Please use another email provider.'));
|
||||
if ( ! is_email( $user_email ) ) {
|
||||
$errors->add( 'user_email', __( 'Please enter a valid email address.' ) );
|
||||
} elseif ( is_email_address_unsafe( $user_email ) ) {
|
||||
$errors->add( 'user_email', __( 'You cannot use that email address to signup. We are having problems with them blocking some of our email. Please use another email provider.' ) );
|
||||
}
|
||||
|
||||
if ( strlen( $user_name ) < 4 )
|
||||
$errors->add('user_name', __( 'Username must be at least 4 characters.' ) );
|
||||
@@ -456,9 +459,6 @@ function wpmu_validate_user_signup($user_name, $user_email) {
|
||||
if ( preg_match( '/^[0-9]*$/', $user_name ) )
|
||||
$errors->add('user_name', __('Sorry, usernames must have letters too!'));
|
||||
|
||||
if ( !is_email( $user_email ) )
|
||||
$errors->add('user_email', __( 'Please enter a valid email address.' ) );
|
||||
|
||||
$limited_email_domains = get_site_option( 'limited_email_domains' );
|
||||
if ( is_array( $limited_email_domains ) && ! empty( $limited_email_domains ) ) {
|
||||
$emaildomain = substr( $user_email, 1 + strpos( $user_email, '@' ) );
|
||||
|
||||
Reference in New Issue
Block a user