Make WordPress Core


Ignore:
Timestamp:
01/09/2020 12:53:29 AM (7 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison and Yoda conditions in the root directory files.

Props pikamander2.
Fixes #48965.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-links-opml.php

    r47033 r47054  
    8383<outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_attr( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_attr( $bookmark->link_url ); ?>" updated="
    8484                                                        <?php
    85                                                         if ( '0000-00-00 00:00:00' != $bookmark->link_updated ) {
     85                                                        if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) {
    8686                                                                echo $bookmark->link_updated;}
    8787                                                        ?>
Note: See TracChangeset for help on using the changeset viewer.