Fix 2.5 merge error

This commit is contained in:
Pierre Goiffon
2018-12-17 17:08:12 +01:00
parent b880ca05a5
commit 473d1fb756

View File

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