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/pomo/mo.php

    r47198 r47219  
    236236
    237237                        // Support revision 0 of MO format specs, only.
    238                         if ( $header['revision'] != 0 ) {
     238                        if ( 0 != $header['revision'] ) {
    239239                                return false;
    240240                        }
Note: See TracChangeset for help on using the changeset viewer.