- Timestamp:
- 09/14/2023 12:44:23 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r56450 r56586 459 459 */ 460 460 public function column_default( $item, $column_name ) { 461 // Restores the more descriptive, specific name for use within this method. 462 $user = $item; 463 461 464 /** This filter is documented in wp-admin/includes/class-wp-users-list-table.php */ 462 echo apply_filters( 463 'manage_users_custom_column', 464 '', // Custom column output. Default empty. 465 $column_name, 466 $item->ID // User ID. 467 ); 465 echo apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID ); 468 466 } 469 467 … … 520 518 521 519 // Restores the more descriptive, specific name for use within this method. 522 $user = $item; 520 $user = $item; 521 523 522 $super_admins = get_super_admins(); 524 525 $actions = array(); 523 $actions = array(); 526 524 527 525 if ( current_user_can( 'edit_user', $user->ID ) ) {
Note: See TracChangeset
for help on using the changeset viewer.