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/blocks.php

    r57038 r57053  
    19711971 */
    19721972function _wp_filter_post_meta_footnotes( $footnotes ) {
    1973     $footnotes_decoded   = json_decode( $footnotes, true );
     1973    $footnotes_decoded = json_decode( $footnotes, true );
    19741974    if ( ! is_array( $footnotes_decoded ) ) {
    19751975        return '';
Note: See TracChangeset for help on using the changeset viewer.