Coding Standards: Use strict comparison in `wp-includes/pomo/entry.php`.
Follow-up to [18528]. Props aristath, poena, afercia, SergeyBiryukov. See #57839. Built from https://develop.svn.wordpress.org/trunk@55927 git-svn-id: http://core.svn.wordpress.org/trunk@55439 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
43c3e172e0
commit
d3dc1cd671
|
@ -108,7 +108,7 @@ if ( ! class_exists( 'Translation_Entry', false ) ) :
|
||||||
public function merge_with( &$other ) {
|
public function merge_with( &$other ) {
|
||||||
$this->flags = array_unique( array_merge( $this->flags, $other->flags ) );
|
$this->flags = array_unique( array_merge( $this->flags, $other->flags ) );
|
||||||
$this->references = array_unique( array_merge( $this->references, $other->references ) );
|
$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;
|
$this->extracted_comments .= $other->extracted_comments;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-alpha-55926';
|
$wp_version = '6.3-alpha-55927';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue