Show setup check for recommended php modules
Fixes #20393 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
d6e17fb017
commit
75836f004d
|
@ -584,6 +584,14 @@ Raw output
|
|||
$recommendedPHPModules[] = 'intl';
|
||||
}
|
||||
|
||||
if (!extension_loaded('bcmath')) {
|
||||
$recommendedPHPModules[] = 'bcmath';
|
||||
}
|
||||
|
||||
if (!extension_loaded('gmp')) {
|
||||
$recommendedPHPModules[] = 'gmp';
|
||||
}
|
||||
|
||||
if ($this->config->getAppValue('theming', 'enabled', 'no') === 'yes') {
|
||||
if (!extension_loaded('imagick')) {
|
||||
$recommendedPHPModules[] = 'imagick';
|
||||
|
|
Loading…
Reference in New Issue