Make WordPress Core

Changeset 51944


Ignore:
Timestamp:
10/28/2021 02:09:07 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct alignment in wp_enqueue_global_styles().

This fixes an Equals sign not aligned with surrounding assignments; expected 5 spaces but found 1 space WPCS warning.

Follow-up to [50973], [51819].

See #53359.

File:
1 edited

Legend:

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

    r51942 r51944  
    23112311    );
    23122312
    2313     $stylesheet = null;
     2313    $stylesheet     = null;
    23142314    $transient_name = 'global_styles_' . get_stylesheet();
     2315
    23152316    if ( $can_use_cache ) {
    23162317        $cache = get_transient( $transient_name );
Note: See TracChangeset for help on using the changeset viewer.