Make WordPress Core


Ignore:
Timestamp:
07/01/2019 08:26:25 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in the base directory.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-settings.php

    r45519 r45582  
    528528// Check site status
    529529if ( is_multisite() ) {
    530     if ( true !== ( $file = ms_site_check() ) ) {
     530    $file = ms_site_check();
     531    if ( true !== $file ) {
    531532        require( $file );
    532533        die();
Note: See TracChangeset for help on using the changeset viewer.