Make WordPress Core


Ignore:
Timestamp:
02/09/2020 04:52:28 PM (7 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/class-wp-theme.php

    r47156 r47219  
    15171517                }
    15181518
    1519                 $current = $blog_id == get_current_blog_id();
     1519                $current = get_current_blog_id() == $blog_id;
    15201520
    15211521                if ( $current ) {
Note: See TracChangeset for help on using the changeset viewer.