Merge pull request #20421 from nextcloud/fix/20393/recommendend_webauthn_mods
Show setup check for recommended php modules
This commit is contained in:
commit
1cc793888f
|
@ -583,6 +583,14 @@ Raw output
|
||||||
$recommendedPHPModules[] = 'intl';
|
$recommendedPHPModules[] = 'intl';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!extension_loaded('bcmath')) {
|
||||||
|
$recommendedPHPModules[] = 'bcmath';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!extension_loaded('gmp')) {
|
||||||
|
$recommendedPHPModules[] = 'gmp';
|
||||||
|
}
|
||||||
|
|
||||||
if ($this->config->getAppValue('theming', 'enabled', 'no') === 'yes') {
|
if ($this->config->getAppValue('theming', 'enabled', 'no') === 'yes') {
|
||||||
if (!extension_loaded('imagick')) {
|
if (!extension_loaded('imagick')) {
|
||||||
$recommendedPHPModules[] = 'imagick';
|
$recommendedPHPModules[] = 'imagick';
|
||||||
|
|
Loading…
Reference in New Issue