Changeset 6776

Show
Ignore:
Timestamp:
02/10/08 07:28:14 (10 months ago)
Author:
ryan
Message:

Fix users table formatting. Props Potter_System and markjaquith. fixes #5784

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/includes/template.php

    r6762 r6776  
    430430    $numposts = get_usernumposts( $user_object->ID ); 
    431431    $r = "<tr id='user-$user_object->ID'$style> 
    432         <td><input type='checkbox' name='users[]' id='user_{$user_object->ID}' class='$role' value='{$user_object->ID}' /> <label for='user_{$user_object->ID}'>{$user_object->ID}</label></td> 
     432        <td><input type='checkbox' name='users[]' id='user_{$user_object->ID}' class='$role' value='{$user_object->ID}' /></td> 
     433        <td><label for='user_{$user_object->ID}'>{$user_object->ID}</label></td> 
    433434        <td><label for='user_{$user_object->ID}'><strong>$user_object->user_login</strong></label></td> 
    434435        <td><label for='user_{$user_object->ID}'>$user_object->first_name $user_object->last_name</label></td> 
  • trunk/wp-admin/users.php

    r6726 r6776  
    292292</tr> 
    293293<tr class="thead"> 
    294     <th><input type="checkbox" onclick="checkAllUsers('<?php echo $role; ?>')"/></th> 
     294    <th><input type="checkbox" onclick="checkAllUsers('<?php echo $role; ?>')"/> </th> 
    295295    <th><?php _e('ID') ?></th> 
    296296    <th><?php _e('Username') ?></th> 
     
    298298    <th><?php _e('E-mail') ?></th> 
    299299    <th><?php _e('Website') ?></th> 
     300    <th><?php _e('Posts created') ?></th> 
    300301    <th colspan="2" style="text-align: center"><?php _e('Actions') ?></th> 
    301302</tr>