Changeset 6776
- Timestamp:
- 02/10/2008 07:28:14 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r6762 r6776 430 430 $numposts = get_usernumposts( $user_object->ID ); 431 431 $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> 433 434 <td><label for='user_{$user_object->ID}'><strong>$user_object->user_login</strong></label></td> 434 435 <td><label for='user_{$user_object->ID}'>$user_object->first_name $user_object->last_name</label></td> -
trunk/wp-admin/users.php
r6726 r6776 292 292 </tr> 293 293 <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> 295 295 <th><?php _e('ID') ?></th> 296 296 <th><?php _e('Username') ?></th> … … 298 298 <th><?php _e('E-mail') ?></th> 299 299 <th><?php _e('Website') ?></th> 300 <th><?php _e('Posts created') ?></th> 300 301 <th colspan="2" style="text-align: center"><?php _e('Actions') ?></th> 301 302 </tr>
Note: See TracChangeset
for help on using the changeset viewer.