Make WordPress Core

Ticket #2940: users.php.diff

File users.php.diff, 1.1 KB (added by filosofo, 19 years ago)
  • users.php

     
    441441<?php wp_nonce_field('add-user') ?>
    442442<table class="editform" width="100%" cellspacing="2" cellpadding="5">
    443443        <tr>
    444                 <th scope="row" width="33%"><?php _e('Nickname') ?><input name="action" type="hidden" id="action" value="adduser" /></th>
     444                <th scope="row" width="33%"><?php _e('Username (required)') ?><input name="action" type="hidden" id="action" value="adduser" /></th>
    445445                <td width="66%"><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td>
    446446        </tr>
    447447        <tr>
     
    453453                <td><input name="last_name" type="text" id="last_name" value="<?php echo $new_user_lastname; ?>" /></td>
    454454        </tr>
    455455        <tr>
    456                 <th scope="row"><?php _e('E-mail') ?></th>
     456                <th scope="row"><?php _e('E-mail (required)') ?></th>
    457457                <td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td>
    458458        </tr>
    459459        <tr>
     
    507507} // end of the $action switch
    508508
    509509include('admin-footer.php');
    510 ?>
    511  No newline at end of file
     510?>