N°1885 move back php-gd from mandatory extension to optional

This commit is contained in:
Pierre Goiffon
2018-12-18 08:52:43 +01:00
parent 3089cbc2bc
commit 672bc471be

View File

@@ -104,7 +104,6 @@ class SetupUtils
'dom',
'zlib',
'zip',
'gd', // used to test image type (always returns false if not installed), image resizing, PDF export
);
$aOptionalExtensions = array(
'mcrypt, sodium or openssl' =>
@@ -114,6 +113,7 @@ class SetupUtils
'openssl' => 'Strong encryption will not be used.',
),
'ldap' => 'LDAP authentication will be disabled.',
'gd' => 'test image type (always returns false if not installed), image resizing, PDF export',
);
asort($aMandatoryExtensions); // Sort the list to look clean !