Ticket #53680: 53680.patch
File 53680.patch, 640 bytes (added by , 4 years ago) |
---|
-
src/wp-includes/compat.php
371 371 } 372 372 } 373 373 374 // WebP constants are only defined in PHP 7.1+.374 // IMAGETYPE_WEBP constant is only defined in PHP 7.1 or later. 375 375 if ( ! defined( 'IMAGETYPE_WEBP' ) ) { 376 376 define( 'IMAGETYPE_WEBP', 18 ); 377 377 } 378 379 // IMG_WEBP constant is only defined in PHP 7.0.10 or later. 378 380 if ( ! defined( 'IMG_WEBP' ) ) { 379 381 define( 'IMG_WEBP', IMAGETYPE_WEBP ); // phpcs:ignore PHPCompatibility.Constants.NewConstants.imagetype_webpFound 380 382 }