Make WordPress Core

Ticket #53680: 53680.patch

File 53680.patch, 640 bytes (added by rtm909, 4 years ago)
  • src/wp-includes/compat.php

     
    371371        }
    372372}
    373373
    374 // WebP constants are only defined in PHP 7.1+.
     374// IMAGETYPE_WEBP constant is only defined in PHP 7.1 or later.
    375375if ( ! defined( 'IMAGETYPE_WEBP' ) ) {
    376376        define( 'IMAGETYPE_WEBP', 18 );
    377377}
     378
     379// IMG_WEBP constant is only defined in PHP 7.0.10 or later.
    378380if ( ! defined( 'IMG_WEBP' ) ) {
    379381        define( 'IMG_WEBP', IMAGETYPE_WEBP ); // phpcs:ignore PHPCompatibility.Constants.NewConstants.imagetype_webpFound
    380382}