Ticket #22973: user-edit.diff
File user-edit.diff, 1.7 KB (added by , 12 years ago) |
---|
-
wp-admin/user-edit.php
201 201 202 202 <h3><?php _e('Personal Options'); ?></h3> 203 203 204 <table class="form-table ">204 <table class="form-table visual-editor"> 205 205 <?php if ( rich_edit_exists() && !( IS_PROFILE_PAGE && !$user_can_edit ) ) : // don't bother showing the option if the editor has been removed ?> 206 206 <tr> 207 207 <th scope="row"><?php _e('Visual Editor')?></th> … … 239 239 240 240 <h3><?php _e('Name') ?></h3> 241 241 242 <table class="form-table ">242 <table class="form-table name"> 243 243 <tr> 244 244 <th><label for="user_login"><?php _e('Username'); ?></label></th> 245 245 <td><input type="text" name="user_login" id="user_login" value="<?php echo esc_attr($profileuser->user_login); ?>" disabled="disabled" class="regular-text" /> <span class="description"><?php _e('Usernames cannot be changed.'); ?></span></td> … … 331 331 332 332 <h3><?php _e('Contact Info') ?></h3> 333 333 334 <table class="form-table ">334 <table class="form-table contact"> 335 335 <tr> 336 336 <th><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th> 337 337 <td><input type="text" name="email" id="email" value="<?php echo esc_attr($profileuser->user_email) ?>" class="regular-text" /> … … 364 364 365 365 <h3><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3> 366 366 367 <table class="form-table ">367 <table class="form-table about"> 368 368 <tr> 369 369 <th><label for="description"><?php _e('Biographical Info'); ?></label></th> 370 370 <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea><br />