Changeset 52074 for trunk/src/wp-includes/user.php
- Timestamp:
- 11/09/2021 03:27:58 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r52064 r52074 3111 3111 $user_email = ''; 3112 3112 } elseif ( email_exists( $user_email ) ) { 3113 $errors->add( 'email_exists', __( '<strong>Error</strong>: This email is already registered. Please choose another one.' ) ); 3113 $errors->add( 3114 'email_exists', 3115 sprintf( 3116 /* translators: %s: Link to the login page. */ 3117 __( '<strong>Error:</strong> This email address is already registered. <a href="%s">Log in</a> with this address or choose another one.' ), 3118 wp_login_url() 3119 ) 3120 ); 3114 3121 } 3115 3122
Note: See TracChangeset
for help on using the changeset viewer.