Add a missing Oxford comma to the install screen. Fixes #30107. Props Ankit K Gupta.

git-svn-id: https://develop.svn.wordpress.org/trunk@30054 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2014-10-28 18:31:19 +00:00
parent 105b60bd0b
commit 3d35d8bc5d

View File

@ -118,7 +118,7 @@ function display_setup_form( $error = null ) {
echo '<input name="user_name" type="hidden" value="admin" />'; echo '<input name="user_name" type="hidden" value="admin" />';
} else { } else {
?><input name="user_name" type="text" id="user_login" size="25" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" /> ?><input name="user_name" type="text" id="user_login" size="25" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" />
<p><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods and the @ symbol.' ); ?></p> <p><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.' ); ?></p>
<?php <?php
} ?> } ?>
</td> </td>