From b44dd453ed4463a7f29e7c890d228e7ca40986ef Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 29 Jan 2021 18:52:35 +0000 Subject: [PATCH] Docs: Switch a comment in `WP_Media_List_Table::prepare_items()` to multi-line format, per the documentation standards. Follow-up to [48417]. Props pinkalbeladiya, davidbaumwald. Fixes #52025. git-svn-id: https://develop.svn.wordpress.org/trunk@50071 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-media-list-table.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/includes/class-wp-media-list-table.php b/src/wp-admin/includes/class-wp-media-list-table.php index a37a76ffcb..3634c30499 100644 --- a/src/wp-admin/includes/class-wp-media-list-table.php +++ b/src/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 ) {