Rename Nickname to Username and mark Username and E-mail as required. Props filosofo. fixes #2940

git-svn-id: http://svn.automattic.com/wordpress/trunk@4136 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2006-08-30 17:09:50 +00:00
parent bbb5ffca6d
commit c0da1aab0d
1 changed files with 3 additions and 3 deletions

View File

@ -441,7 +441,7 @@ foreach ( (array) $roleclass as $user_object ) {
<?php wp_nonce_field('add-user') ?>
<table class="editform" width="100%" cellspacing="2" cellpadding="5">
<tr>
<th scope="row" width="33%"><?php _e('Nickname') ?><input name="action" type="hidden" id="action" value="adduser" /></th>
<th scope="row" width="33%"><?php _e('Username (required)') ?><input name="action" type="hidden" id="action" value="adduser" /></th>
<td width="66%"><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td>
</tr>
<tr>
@ -453,7 +453,7 @@ foreach ( (array) $roleclass as $user_object ) {
<td><input name="last_name" type="text" id="last_name" value="<?php echo $new_user_lastname; ?>" /></td>
</tr>
<tr>
<th scope="row"><?php _e('E-mail') ?></th>
<th scope="row"><?php _e('E-mail (required)') ?></th>
<td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td>
</tr>
<tr>
@ -507,4 +507,4 @@ break;
} // end of the $action switch
include('admin-footer.php');
?>
?>