From 62afd089f3d3d69244dfe738133cbd6e3840c3bc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 13 Feb 2024 12:26:11 +0000 Subject: [PATCH] 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 --- wp-includes/class-wp-image-editor-imagick.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-image-editor-imagick.php b/wp-includes/class-wp-image-editor-imagick.php index 7338fa8b34..5de01d7322 100644 --- a/wp-includes/class-wp-image-editor-imagick.php +++ b/wp-includes/class-wp-image-editor-imagick.php @@ -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 { diff --git a/wp-includes/version.php b/wp-includes/version.php index b6de7b1ddd..b6f63b3278 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.