Make WordPress Core


Ignore:
Timestamp:
02/09/2020 04:52:28 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use Yoda conditions where appropriate.

See #49222.

File:
1 edited

Legend:

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

    r47122 r47219  
    633633        return $is_external;
    634634    }
    635     if ( $host === get_network()->domain ) {
     635    if ( get_network()->domain === $host ) {
    636636        return true;
    637637    }
Note: See TracChangeset for help on using the changeset viewer.