Ticket #2940: users.php.diff
File users.php.diff, 1.1 KB (added by , 19 years ago) |
---|
-
users.php
441 441 <?php wp_nonce_field('add-user') ?> 442 442 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 443 443 <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> 445 445 <td width="66%"><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td> 446 446 </tr> 447 447 <tr> … … 453 453 <td><input name="last_name" type="text" id="last_name" value="<?php echo $new_user_lastname; ?>" /></td> 454 454 </tr> 455 455 <tr> 456 <th scope="row"><?php _e('E-mail ') ?></th>456 <th scope="row"><?php _e('E-mail (required)') ?></th> 457 457 <td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td> 458 458 </tr> 459 459 <tr> … … 507 507 } // end of the $action switch 508 508 509 509 include('admin-footer.php'); 510 ?> 511 No newline at end of file 510 ?>