Changeset 31576 for trunk/src/wp-includes/class-wp-image-editor-imagick.php
- Timestamp:
- 02/27/2015 07:37:47 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r31127 r31576 302 302 303 303 $resize_result = $this->resize( $size_data['width'], $size_data['height'], $size_data['crop'] ); 304 305 if( ! is_wp_error( $resize_result ) ) { 304 $duplicate = ( ( $orig_size['width'] == $size_data['width'] ) && ( $orig_size['height'] == $size_data['height'] ) ); 305 306 if ( ! is_wp_error( $resize_result ) && ! $duplicate ) { 306 307 $resized = $this->_save( $this->image ); 307 308
Note: See TracChangeset
for help on using the changeset viewer.