- Timestamp:
- 09/07/2021 06:18:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r51734 r51735 506 506 * 507 507 * @since 4.3.0 508 * 509 * @param WP_Theme $theme The current WP_Theme object. 510 */ 511 public function column_cb( $theme ) { 508 * @since 5.9.0 Renamed `$theme` to `$item` to match parent class for PHP 8 named parameter support. 509 * 510 * @param WP_Theme $item The current WP_Theme object. 511 */ 512 public function column_cb( $item ) { 513 // Restores the more descriptive, specific name for use within this method. 514 $theme = $item; 512 515 $checkbox_id = 'checkbox_' . md5( $theme->get( 'Name' ) ); 513 516 ?>
Note: See TracChangeset
for help on using the changeset viewer.