Changeset 24155
- Timestamp:
- 05/01/2013 06:39:56 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/ms-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ms-functions.php
r24130 r24155 563 563 $errors->add('blogname', __( 'Site name must be at least 4 characters.' ) ); 564 564 565 if ( strpos( ' ' . $blogname, '_' ) != false )565 if ( strpos( $blogname, '_' ) !== false ) 566 566 $errors->add( 'blogname', __( 'Sorry, site names may not contain the character “_”!' ) ); 567 567
Note: See TracChangeset
for help on using the changeset viewer.