diff --git a/wp-includes/pomo/entry.php b/wp-includes/pomo/entry.php index 983f1d4113..cd209e2f20 100644 --- a/wp-includes/pomo/entry.php +++ b/wp-includes/pomo/entry.php @@ -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; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 6c5bcd4ac7..0343c7ccee 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @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.