Changeset 7883 for trunk/wp-admin/users.php
- Timestamp:
- 05/04/2008 10:37:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/users.php
r7745 r7883 146 146 </ul> 147 147 <?php if ( $go_delete ) : ?> 148 < p><?php _e('What should be done with posts and links owned by this user?'); ?></p>148 <fieldset><p><legend><?php _e('What should be done with posts and links owned by this user?'); ?></legend></p> 149 149 <ul style="list-style:none;"> 150 150 <li><label><input type="radio" id="delete_option0" name="delete_option" value="delete" checked="checked" /> … … 152 152 <li><input type="radio" id="delete_option1" name="delete_option" value="reassign" /> 153 153 <?php echo '<label for="delete_option1">'.__('Attribute all posts and links to:')."</label> $user_dropdown"; ?></li> 154 </ul> 154 </ul></fieldset> 155 155 <input type="hidden" name="action" value="dodelete" /> 156 156 <p class="submit"><input type="submit" name="submit" value="<?php _e('Confirm Deletion'); ?>" class="button-secondary" /></p> … … 288 288 </ul> 289 289 <p id="post-search"> 290 <label class="hidden" for="post-search-input"><?php _e( 'Search Users' ); ?>:</label> 290 291 <input type="text" id="post-search-input" name="usersearch" value="<?php echo attribute_escape($wp_user_search->search_term); ?>" /> 291 292 <input type="submit" value="<?php _e( 'Search Users' ); ?>" class="button" /> … … 300 301 <div class="alignleft"> 301 302 <input type="submit" value="<?php _e('Delete'); ?>" name="deleteit" class="button-secondary delete" /> 302 < select name="new_role"><option value=''><?php _e('Change role to…') ?></option>"<?php wp_dropdown_roles(); ?></select>303 <label class="hidden" for="new_role"><?php _e('Change role to…') ?></label><select name="new_role" id="new_role"><option value=''><?php _e('Change role to…') ?></option>"<?php wp_dropdown_roles(); ?></select> 303 304 <input type="submit" value="<?php _e('Change'); ?>" name="changeit" class="button-secondary" /> 304 305 <?php wp_nonce_field('bulk-users'); ?> … … 404 405 <table class="form-table"> 405 406 <tr class="form-field form-required"> 406 <th scope="row">< ?php _e('Username (required)') ?><input name="action" type="hidden" id="action" value="adduser" /></th>407 <th scope="row"><label for="user_login"><?php _e('Username (required)') ?></label><input name="action" type="hidden" id="action" value="adduser" /></th> 407 408 <td ><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td> 408 409 </tr> 409 410 <tr class="form-field"> 410 <th scope="row">< ?php _e('First Name') ?></th>411 <th scope="row"><label for="first_name"><?php _e('First Name') ?> </label></th> 411 412 <td><input name="first_name" type="text" id="first_name" value="<?php echo $new_user_firstname; ?>" /></td> 412 413 </tr> 413 414 <tr class="form-field"> 414 <th scope="row">< ?php _e('Last Name') ?></th>415 <th scope="row"><label for="last_name"><?php _e('Last Name') ?> </label></th> 415 416 <td><input name="last_name" type="text" id="last_name" value="<?php echo $new_user_lastname; ?>" /></td> 416 417 </tr> 417 418 <tr class="form-field form-required"> 418 <th scope="row">< ?php _e('E-mail (required)') ?></th>419 <th scope="row"><label for="email"><?php _e('E-mail (required)') ?></label></th> 419 420 <td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td> 420 421 </tr> 421 422 <tr class="form-field"> 422 <th scope="row">< ?php _e('Website') ?></th>423 <th scope="row"><label for="url"><?php _e('Website') ?></label></th> 423 424 <td><input name="url" type="text" id="url" value="<?php echo $new_user_uri; ?>" /></td> 424 425 </tr> … … 426 427 <?php if ( apply_filters('show_password_fields', true) ) : ?> 427 428 <tr class="form-field form-required"> 428 <th scope="row">< ?php _e('Password (twice)') ?></th>429 <th scope="row"><label for="pass1"><?php _e('Password (twice)') ?> </label></th> 429 430 <td><input name="pass1" type="password" id="pass1" /> 430 431 <br /> … … 434 435 435 436 <tr class="form-field"> 436 <th scope="row">< ?php _e('Role'); ?></th>437 <th scope="row"><label for="role"><?php _e('Role'); ?></label></th> 437 438 <td><select name="role" id="role"> 438 439 <?php
Note: See TracChangeset
for help on using the changeset viewer.