Make WordPress Core

Changeset 59887


Ignore:
Timestamp:
02/28/2025 11:25:15 AM (3 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison in privacy_ping_filter().

Follow-up to [3548], [3885].

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment.php

    r59871 r59887  
    32083208 */
    32093209function privacy_ping_filter( $sites ) {
    3210     if ( '0' != get_option( 'blog_public' ) ) {
     3210    if ( '0' !== get_option( 'blog_public' ) ) {
    32113211        return $sites;
    32123212    } else {
Note: See TracChangeset for help on using the changeset viewer.