- Timestamp:
- 01/11/2020 05:56:15 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r46391 r47059 577 577 * @param string $column_name Current column name. 578 578 * @param string $primary Primary column name. 579 * @return string|void Comment row actions output. 579 * @return string Row actions output for comments. An empty string 580 * if the current column is not the primary column, 581 * or if the current user cannot edit the comment. 580 582 */ 581 583 protected function handle_row_actions( $comment, $column_name, $primary ) { … … 587 589 588 590 if ( ! $this->user_can ) { 589 return ;591 return ''; 590 592 } 591 593
Note: See TracChangeset
for help on using the changeset viewer.