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
This commit is contained in:
Sergey Biryukov 2021-01-29 18:52:35 +00:00
parent 8d7e7d03ff
commit b44dd453ed

View File

@ -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 ) {