Changeset 24207 for trunk/wp-login.php
- Timestamp:
- 05/08/2013 09:27:31 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r24179 r24207 266 266 267 267 if ( $message && !wp_mail($user_email, $title, $message) ) 268 wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function. ..') );268 wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') ); 269 269 270 270 return true; … … 356 356 $user_id = wp_create_user( $sanitized_user_login, $user_pass, $user_email ); 357 357 if ( ! $user_id ) { 358 $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn’t register you ...please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) );358 $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn’t register you… please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) ); 359 359 return $errors; 360 360 }
Note: See TracChangeset
for help on using the changeset viewer.