Changeset 52978 for trunk/src/wp-includes/user.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r52954 r52978 3178 3178 $errors->add( 'empty_email', __( '<strong>Error</strong>: Please type your email address.' ) ); 3179 3179 } elseif ( ! is_email( $user_email ) ) { 3180 $errors->add( 'invalid_email', __( '<strong>Error</strong>: The email address is n’t correct.' ) );3180 $errors->add( 'invalid_email', __( '<strong>Error</strong>: The email address is not correct.' ) ); 3181 3181 $user_email = ''; 3182 3182 } elseif ( email_exists( $user_email ) ) { … … 3233 3233 sprintf( 3234 3234 /* translators: %s: Admin email address. */ 3235 __( '<strong>Error</strong>: Could n’t register you… please contact the <a href="mailto:%s">site admin</a>!' ),3235 __( '<strong>Error</strong>: Could not register you… please contact the <a href="mailto:%s">site admin</a>!' ), 3236 3236 get_option( 'admin_email' ) 3237 3237 ) … … 3476 3476 $errors->add( 3477 3477 'user_email', 3478 __( '<strong>Error</strong>: The email address is n’t correct.' ),3478 __( '<strong>Error</strong>: The email address is not correct.' ), 3479 3479 array( 3480 3480 'form-field' => 'email',
Note: See TracChangeset
for help on using the changeset viewer.