Docs: Correct the duplicate hook reference for `image_save_progressive` filter.
Follow-up to [57607], [57614]. Props skithund. See #21668. Built from https://develop.svn.wordpress.org/trunk@57616 git-svn-id: http://core.svn.wordpress.org/trunk@57117 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f209cd1410
commit
62afd089f3
|
@ -827,7 +827,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
|
|||
) {
|
||||
$orig_interlace = $this->image->getInterlaceScheme();
|
||||
|
||||
/** This filter is documented in wp-includes/class-wp-image-editor-imagick.php */
|
||||
/** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
|
||||
if ( apply_filters( 'image_save_progressive', false, $mime_type ) ) {
|
||||
$this->image->setInterlaceScheme( Imagick::INTERLACE_PLANE ); // True - line interlace output.
|
||||
} else {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.5-alpha-57615';
|
||||
$wp_version = '6.5-alpha-57616';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue