Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (6 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-http-streams.php

    r44397 r45590  
    327327
    328328        // Handle redirects.
    329         if ( false !== ( $redirect_response = WP_Http::handle_redirects( $url, $r, $response ) ) ) {
     329        $redirect_response = WP_Http::handle_redirects( $url, $r, $response );
     330        if ( false !== $redirect_response ) {
    330331            return $redirect_response;
    331332        }
Note: See TracChangeset for help on using the changeset viewer.