- Timestamp:
- 01/11/2020 05:56:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r46441 r47059 667 667 * @param string $column_name Current column name. 668 668 * @param string $primary Primary column name. 669 * @return string Row actions output. 669 * @return string Row actions output for sites in Multisite, or an empty string 670 * if the current column is not the primary column. 670 671 */ 671 672 protected function handle_row_actions( $blog, $column_name, $primary ) { 672 673 if ( $primary !== $column_name ) { 673 return ;674 return ''; 674 675 } 675 676 … … 734 735 */ 735 736 $actions = apply_filters( 'manage_sites_action_links', array_filter( $actions ), $blog['blog_id'], $blogname ); 737 736 738 return $this->row_actions( $actions ); 737 739 }
Note: See TracChangeset
for help on using the changeset viewer.