Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-site-query.php

    r44983 r45590  
    362362        $_sites = array();
    363363        foreach ( $site_ids as $site_id ) {
    364             if ( $_site = get_site( $site_id ) ) {
     364            $_site = get_site( $site_id );
     365            if ( $_site ) {
    365366                $_sites[] = $_site;
    366367            }
Note: See TracChangeset for help on using the changeset viewer.