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-admin/my-sites.php

    r47198 r47219  
    108108     */
    109109    $settings_html = apply_filters( 'myblogs_options', '', 'global' );
    110     if ( $settings_html != '' ) {
     110    if ( '' != $settings_html ) {
    111111        echo '<h3>' . __( 'Global Settings' ) . '</h3>';
    112112        echo $settings_html;
Note: See TracChangeset for help on using the changeset viewer.