Make WordPress Core


Ignore:
Timestamp:
11/02/2023 12:02:36 AM (16 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct equals sign alignment in various files.

This resolves a few WPCS warnings:

Equals sign not aligned with surrounding statements

so that the output of composer format is clean.

Follow-up to [56796], [56803], [56838], [56839], [56985].

See #59650.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/media.php

    r57042 r57053  
    26092609    } elseif ( ! empty( $atts['exclude'] ) ) {
    26102610        $post_parent_id = $id;
    2611         $attachments = get_children(
     2611        $attachments    = get_children(
    26122612            array(
    26132613                'post_parent'    => $id,
     
    26222622    } else {
    26232623        $post_parent_id = $id;
    2624         $attachments = get_children(
     2624        $attachments    = get_children(
    26252625            array(
    26262626                'post_parent'    => $id,
Note: See TracChangeset for help on using the changeset viewer.