Make WordPress Core

Changeset 61790

Timestamp:
03/03/2026 07:17:15 AM (45 hours ago)
Author:
westonruter
Message:

Coding Standards: Apply changes from running composer format.

Developed in https://github.com/WordPress/wordpress-develop/pull/11111

Follow-up to r61745, r61703, r33268.

Props soean.
See #64226.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-media-list-table.php

    r61738 r61790  
    494494                get_edit_post_link( $post->ID ),
    495495            );
    496             $link_end = '</a>';
     496            $link_end = '</a>';
    497497        }
    498498
  • trunk/src/wp-includes/author-template.php

    r61745 r61790  
    335335    $author = get_the_author();
    336336    /* translators: %s: Author's display name. */
    337     $title  = sprintf( __( 'Posts by %s' ), $author );
     337    $title = sprintf( __( 'Posts by %s' ), $author );
    338338
    339339    $link = sprintf(
  • trunk/src/wp-includes/rest-api/class-wp-rest-server.php

    r61703 r61790  
    13921392            $available['jpeg_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/jpeg' );
    13931393            /** This filter is documented in wp-includes/class-wp-image-editor-imagick.php */
    1394             $available['png_interlaced']  = (bool) apply_filters( 'image_save_progressive', false, 'image/png' );
     1394            $available['png_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/png' );
    13951395            /** This filter is documented in wp-includes/class-wp-image-editor-imagick.php */
    1396             $available['gif_interlaced']  = (bool) apply_filters( 'image_save_progressive', false, 'image/gif' );
     1396            $available['gif_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/gif' );
    13971397        }
    13981398
Note: See TracChangeset for help on using the changeset viewer.