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-network-query.php

    r44983 r45590  
    269269        $_networks = array();
    270270        foreach ( $network_ids as $network_id ) {
    271             if ( $_network = get_network( $network_id ) ) {
     271            $_network = get_network( $network_id );
     272            if ( $_network ) {
    272273                $_networks[] = $_network;
    273274            }
Note: See TracChangeset for help on using the changeset viewer.