mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-02-19 23:32:49 +00:00
Coding Standards: Use strict comparison in wp-includes/pomo/entry.php.
Follow-up to [18528]. Props aristath, poena, afercia, SergeyBiryukov. See #57839. git-svn-id: https://develop.svn.wordpress.org/trunk@55927 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
be395bf73a
commit
a1673dccae
@ -108,7 +108,7 @@ if ( ! class_exists( 'Translation_Entry', false ) ) :
|
||||
public function merge_with( &$other ) {
|
||||
$this->flags = array_unique( array_merge( $this->flags, $other->flags ) );
|
||||
$this->references = array_unique( array_merge( $this->references, $other->references ) );
|
||||
if ( $this->extracted_comments != $other->extracted_comments ) {
|
||||
if ( $this->extracted_comments !== $other->extracted_comments ) {
|
||||
$this->extracted_comments .= $other->extracted_comments;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user