Skip to content
Snippets Groups Projects
Unverified Commit 1cc79388 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #20421 from nextcloud/fix/20393/recommendend_webauthn_mods

Show setup check for recommended php modules
parents 89242142 75836f00
No related branches found
No related tags found
No related merge requests found
...@@ -583,6 +583,14 @@ Raw output ...@@ -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';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment