Changeset 32950
- Timestamp:
- 06/26/2015 01:38:25 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r32942 r32950 495 495 $errors->add('user_name', __( 'Username must be at least 4 characters.' ) ); 496 496 497 if ( strpos( ' ' .$user_name, '_' ) !== false )497 if ( strpos( $user_name, '_' ) !== false ) 498 498 $errors->add( 'user_name', __( 'Sorry, usernames may not contain the character “_”!' ) ); 499 499
Note: See TracChangeset
for help on using the changeset viewer.