- Timestamp:
- 09/07/2021 06:18:10 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r51734 r51735 869 869 870 870 /** 871 * @param WP_Comment $comment The comment object. 872 */ 873 public function column_cb( $comment ) { 871 * @since 5.9.0 Renamed `$comment` to `$item` to match parent class for PHP 8 named parameter support. 872 * 873 * @param WP_Comment $item The comment object. 874 */ 875 public function column_cb( $item ) { 876 // Restores the more descriptive, specific name for use within this method. 877 $comment = $item; 878 874 879 if ( $this->user_can ) { 875 880 ?>
Note: See TracChangeset
for help on using the changeset viewer.