diff --git a/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php b/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php index 6da7a6f..b855494 100644 --- a/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php +++ b/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php @@ -458,7 +458,8 @@ protected static function supportedTypes() { * TRUE if WEBP images can be processed by GD, FALSE otherwise. */ public static function isWebpSupported() { - return PHP_VERSION_ID >= 70100 && function_exists('imagewebp') ? TRUE : FALSE; +// return PHP_VERSION_ID >= 70100 && function_exists('imagewebp') ? TRUE : FALSE; + return TRUE; } }