diff --git a/wp-admin/includes/class-wp-media-list-table.php b/wp-admin/includes/class-wp-media-list-table.php index a37a76ffcb..3634c30499 100644 --- a/wp-admin/includes/class-wp-media-list-table.php +++ b/wp-admin/includes/class-wp-media-list-table.php @@ -71,9 +71,11 @@ class WP_Media_List_Table extends WP_List_Table { $mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode']; - // Exclude attachments scheduled for deletion in the next two hours - // if they are for zip packages for interrupted or failed updates. - // See File_Upload_Upgrader class. + /* + * Exclude attachments scheduled for deletion in the next two hours + * if they are for zip packages for interrupted or failed updates. + * See File_Upload_Upgrader class. + */ $not_in = array(); foreach ( _get_cron_array() as $cron ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 3339c4b177..c0257acbb1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-50070'; +$wp_version = '5.7-alpha-50071'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.