Make WordPress Core

Changeset 55904


Ignore:
Timestamp:
06/10/2023 07:01:16 AM (20 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison in wp-admin/options-writing.php.

Follow-up to [4326], [19304].

Props aristath, poena, afercia, SergeyBiryukov.
See #57839.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options-writing.php

    r55412 r55904  
    207207<h2 class="title"><?php _e( 'Update Services' ); ?></h2>
    208208
    209     <?php if ( 1 == get_option( 'blog_public' ) ) : ?>
     209    <?php if ( '1' === get_option( 'blog_public' ) ) : ?>
    210210
    211211    <p><label for="ping_sites">
Note: See TracChangeset for help on using the changeset viewer.