Skip to content

Commit 1aa6da6

Browse files
committed
Coding Standards: Fix alignment in WP_Image_Editor_Imagick::thumbnail_image.
Follow-up to [59589]. See #36477, #62279. git-svn-id: https://develop.svn.wordpress.org/trunk@60047 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 7047a91 commit 1aa6da6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/class-wp-image-editor-imagick.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ protected function thumbnail_image( $dst_w, $dst_h, $filter_name = 'FILTER_TRIAN
504504
$max_colors = pow( 2, $indexed_pixel_depth );
505505
if ( is_callable( array( $this->image, 'getImageColors' ) ) ) {
506506
$current_colors = $this->image->getImageColors();
507-
$max_colors = min( $max_colors, $current_colors );
507+
$max_colors = min( $max_colors, $current_colors );
508508
}
509509
$this->image->quantizeImage( $max_colors, $this->image->getColorspace(), 0, false, false );
510510

0 commit comments

Comments
 (0)