Changeset 45926 for trunk/src/wp-includes/user.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r45874 r45926 2558 2558 $user_id = wp_create_user( $sanitized_user_login, $user_pass, $user_email ); 2559 2559 if ( ! $user_id || is_wp_error( $user_id ) ) { 2560 $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn’t register you… please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) ); 2560 $errors->add( 2561 'registerfail', 2562 sprintf( 2563 /* translators: %s: admin email address */ 2564 __( '<strong>ERROR</strong>: Couldn’t register you… please contact the <a href="mailto:%s">webmaster</a> !' ), 2565 get_option( 'admin_email' ) 2566 ) 2567 ); 2561 2568 return $errors; 2562 2569 }
Note: See TracChangeset
for help on using the changeset viewer.