Make WordPress Core

Changeset 55927


Ignore:
Timestamp:
06/16/2023 11:21:59 AM (23 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison in wp-includes/pomo/entry.php.

Follow-up to [18528].

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

File:
1 edited

Legend:

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

    r54315 r55927  
    109109            $this->flags      = array_unique( array_merge( $this->flags, $other->flags ) );
    110110            $this->references = array_unique( array_merge( $this->references, $other->references ) );
    111             if ( $this->extracted_comments != $other->extracted_comments ) {
     111            if ( $this->extracted_comments !== $other->extracted_comments ) {
    112112                $this->extracted_comments .= $other->extracted_comments;
    113113            }
Note: See TracChangeset for help on using the changeset viewer.