Make WordPress Core

Changeset 51147


Ignore:
Timestamp:
06/14/2021 11:41:07 PM (4 years ago)
Author:
desrosj
Message:

Coding Standards: Apply some alignment fixes.

Follow up to [51145].
See #50105.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/ajax-actions.php

    r51145 r51147  
    29902990     * @param array $query An array of query variables.
    29912991     */
    2992     $query = apply_filters( 'ajax_query_attachments_args', $query );
     2992    $query             = apply_filters( 'ajax_query_attachments_args', $query );
    29932993    $attachments_query = new WP_Query( $query );
    29942994
    2995     $posts = array_map( 'wp_prepare_attachment_for_js', $attachments_query->posts );
    2996     $posts = array_filter( $posts );
     2995    $posts       = array_map( 'wp_prepare_attachment_for_js', $attachments_query->posts );
     2996    $posts       = array_filter( $posts );
    29972997    $total_posts = $attachments_query->found_posts;
    29982998
Note: See TracChangeset for help on using the changeset viewer.