diff --git a/wp-includes/class-wp-image-editor-imagick.php b/wp-includes/class-wp-image-editor-imagick.php index 5de01d7322..d38ee6fd63 100644 --- a/wp-includes/class-wp-image-editor-imagick.php +++ b/wp-includes/class-wp-image-editor-imagick.php @@ -342,7 +342,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { * @return true|WP_Error */ public function resize( $max_w, $max_h, $crop = false ) { - if ( ( $this->size['width'] == $max_w ) && ( $this->size['height'] == $max_h ) ) { + if ( ( $this->size['width'] === $max_w ) && ( $this->size['height'] === $max_h ) ) { return true; } diff --git a/wp-includes/version.php b/wp-includes/version.php index cd1ce624a5..bca4b74c3c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-57933'; +$wp_version = '6.6-alpha-57934'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.