- Timestamp:
- 09/14/2023 12:44:23 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r56450 r56586 598 598 */ 599 599 public function column_default( $item, $column_name ) { 600 // Restores the more descriptive, specific name for use within this method. 601 $blog = $item; 602 600 603 /** 601 604 * Fires for each registered custom column in the Sites list table. … … 606 609 * @param int $blog_id The site ID. 607 610 */ 608 do_action( 'manage_sites_custom_column', $column_name, $ item['blog_id'] );611 do_action( 'manage_sites_custom_column', $column_name, $blog['blog_id'] ); 609 612 } 610 613 … … 715 718 716 719 // Restores the more descriptive, specific name for use within this method. 717 $blog = $item; 720 $blog = $item; 721 718 722 $blogname = untrailingslashit( $blog['domain'] . $blog['path'] ); 719 723
Note: See TracChangeset
for help on using the changeset viewer.