- Timestamp:
- 09/07/2021 07:23:00 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r51735 r51737 669 669 * 670 670 * @since 4.3.0 671 * 672 * @param array $blog Site being acted upon. 671 * @since 5.9.0 Renamed `$blog` to `$item` to match parent class for PHP 8 named parameter support. 672 * 673 * @param array $item Site being acted upon. 673 674 * @param string $column_name Current column name. 674 675 * @param string $primary Primary column name. … … 676 677 * if the current column is not the primary column. 677 678 */ 678 protected function handle_row_actions( $ blog, $column_name, $primary ) {679 protected function handle_row_actions( $item, $column_name, $primary ) { 679 680 if ( $primary !== $column_name ) { 680 681 return ''; 681 682 } 682 683 684 // Restores the more descriptive, specific name for use within this method. 685 $blog = $item; 683 686 $blogname = untrailingslashit( $blog['domain'] . $blog['path'] ); 684 687
Note: See TracChangeset
for help on using the changeset viewer.