diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-12-12 17:13:20 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-01-15 13:31:13 +0100 |
commit | 17dd695e0eb89199f39f4c894af53e35edefce58 (patch) | |
tree | 4850f11f9e0ea9623fe35f5cdba188a19775f0a4 /core/js/setupchecks.js | |
parent | cf8c7e92702b14ce2ff8c57fd07d39cbb0ab17ec (diff) | |
download | nextcloud-server-17dd695e0eb89199f39f4c894af53e35edefce58.tar.gz nextcloud-server-17dd695e0eb89199f39f4c894af53e35edefce58.zip |
Migrate PHP imagick module check to new SetupCheck API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 4331e8e9cc9..837482090b9 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -246,15 +246,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_WARNING }); } - if (!data.isImagickEnabled) { - messages.push({ - msg: t( - 'core', - 'The PHP module "imagick" is not enabled although the theming app is. For favicon generation to work correctly, you need to install and enable this module.' - ), - type: OC.SetupChecks.MESSAGE_TYPE_INFO - }) - } if (!data.areWebauthnExtensionsEnabled) { messages.push({ msg: t( @@ -264,12 +255,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_INFO }) } - if (data.imageMagickLacksSVGSupport) { - messages.push({ - msg: t('core', 'Module php-imagick in this instance has no SVG support. For better compatibility it is recommended to install it.'), - type: OC.SetupChecks.MESSAGE_TYPE_INFO - }) - } if (data.isMysqlUsedWithoutUTF8MB4) { messages.push({ |