diff --git a/wp-includes/compat.php b/wp-includes/compat.php index aec742d77a..6fe5ab37e1 100644 --- a/wp-includes/compat.php +++ b/wp-includes/compat.php @@ -371,10 +371,12 @@ if ( ! function_exists( 'is_iterable' ) ) { } } -// WebP constants are only defined in PHP 7.1+. +// IMAGETYPE_WEBP constant is only defined in PHP 7.1 or later. if ( ! defined( 'IMAGETYPE_WEBP' ) ) { define( 'IMAGETYPE_WEBP', 18 ); } + +// IMG_WEBP constant is only defined in PHP 7.0.10 or later. if ( ! defined( 'IMG_WEBP' ) ) { define( 'IMG_WEBP', IMAGETYPE_WEBP ); // phpcs:ignore PHPCompatibility.Constants.NewConstants.imagetype_webpFound } diff --git a/wp-includes/version.php b/wp-includes/version.php index 1c3b36a1c6..c5a2d5740e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51473'; +$wp_version = '5.9-alpha-51474'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.