- Timestamp:
- 01/06/2026 05:55:33 AM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r59960 r61444 49 49 array( 50 50 'plural' => 'themes', 51 'screen' => isset( $args['screen'] ) ? $args['screen'] :null,51 'screen' => $args['screen'] ?? null, 52 52 ) 53 53 ); 54 54 55 $status = isset( $_REQUEST['theme_status'] ) ? $_REQUEST['theme_status'] :'all';55 $status = $_REQUEST['theme_status'] ?? 'all'; 56 56 if ( ! in_array( $status, array( 'all', 'enabled', 'disabled', 'upgrade', 'search', 'broken', 'auto-update-enabled', 'auto-update-disabled' ), true ) ) { 57 57 $status = 'all'; … … 154 154 155 155 $theme_data = array( 156 'update_supported' => isset( $theme->update_supported ) ? $theme->update_supported :true,156 'update_supported' => $theme->update_supported ?? true, 157 157 ); 158 158
Note: See TracChangeset
for help on using the changeset viewer.