Make WordPress Core

Changeset 60047


Ignore:
Timestamp:
03/18/2025 11:23:23 PM (2 months ago)
Author:
jorbin
Message:

Coding Standards: Fix alignment in WP_Image_Editor_Imagick::thumbnail_image.

Follow-up to [59589].

See #36477, #62279.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-image-editor-imagick.php

    r59589 r60047  
    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 );
Note: See TracChangeset for help on using the changeset viewer.