Ticket #33631: 33631-fixed.diff
| File 33631-fixed.diff, 718 bytes (added by , 10 years ago) |
|---|
-
wp-admin/network/site-new.php
90 90 $password = 'N/A'; 91 91 $user_id = email_exists($email); 92 92 if ( !$user_id ) { // Create a new user with a random password 93 /** 94 * Fires if a new user would be created via the network site-new.php page. 95 * 96 * @param string $email Email of the non-existent user. 97 */ 98 do_action( 'network_site_new_created_user_pending', $email); 99 93 100 $user_id = username_exists( $domain ); 94 101 if ( $user_id ) { 95 102 wp_die( __( 'The domain or path entered conflicts with an existing username.' ) );