Media: Use strict comparison in `make_subsize()`.
Follow up from [55278]. Props bueltge, desrosj, mukesh27. See #57370. Built from https://develop.svn.wordpress.org/trunk@55300 git-svn-id: http://core.svn.wordpress.org/trunk@54833 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
be531bdd37
commit
d1b96a8e04
|
@ -503,7 +503,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
|
|||
$size_data['crop'] = false;
|
||||
}
|
||||
|
||||
if ( ( $this->size['width'] == $size_data['width'] ) && ( $this->size['height'] == $size_data['height'] ) ) {
|
||||
if ( ( $this->size['width'] === $size_data['width'] ) && ( $this->size['height'] === $size_data['height'] ) ) {
|
||||
return new WP_Error( 'image_subsize_create_error', __( 'The image already has the requested size.' ) );
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.2-beta1-55299';
|
||||
$wp_version = '6.2-beta1-55300';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue