Make WordPress Core

Changeset 55033


Ignore:
Timestamp:
01/05/2023 03:25:44 PM (18 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct alignment in wp-includes/option.php.

This fixes an Equals sign not aligned with surrounding statements WPCS warning, so that the output of composer format is clean.

Follow-up to [54948].

See #56791.

File:
1 edited

Legend:

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

    r54953 r55033  
    14681468        /** This filter is documented in wp-includes/option.php */
    14691469        $default_value = apply_filters( 'default_site_option_' . $option, $default_value, $option, $network_id );
    1470         $value   = get_option( $option, $default_value );
     1470        $value         = get_option( $option, $default_value );
    14711471    } else {
    14721472        $cache_key = "$network_id:$option";
Note: See TracChangeset for help on using the changeset viewer.