Ticket #25046: 25046.diff
File 25046.diff, 607 bytes (added by , 11 years ago) |
---|
-
wp-includes/ms-functions.php
378 378 $is_email_address_unsafe = false; 379 379 380 380 if ( $banned_names && is_array( $banned_names ) ) { 381 382 // any comparisons we make should be case insensitive 383 $banned_names = array_map( 'strtolower', $banned_names ); 384 $user_email = strtolower( $user_email ); 385 381 386 list( $email_local_part, $email_domain ) = explode( '@', $user_email ); 382 387 383 388 foreach ( $banned_names as $banned_domain ) {