diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-12 17:04:11 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-19 15:58:45 +0200 |
commit | 0c346849f3904f4994ea306ef53884ffb87a2ee6 (patch) | |
tree | 956af1767c85df52cb4dc2e89a9e4a345f7a5bbb /core/js/setupchecks.js | |
parent | b6c35b3be0a2c2a26e6409990a3855c36fa06ce9 (diff) | |
download | nextcloud-server-0c346849f3904f4994ea306ef53884ffb87a2ee6.tar.gz nextcloud-server-0c346849f3904f4994ea306ef53884ffb87a2ee6.zip |
Migrate missing PHP modules check to new API and improve it
Test all modules listed as required in our documentation
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index a2bddefbe69..dd77c8603c4 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -383,16 +383,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_INFO }) } - if (data.recommendedPHPModules.length > 0) { - var listOfRecommendedPHPModules = ""; - data.recommendedPHPModules.forEach(function(element){ - listOfRecommendedPHPModules += '<li>' + element + '</li>'; - }); - messages.push({ - msg: t('core', 'This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them.') + '<ul><code>' + listOfRecommendedPHPModules + '</code></ul>', - type: OC.SetupChecks.MESSAGE_TYPE_INFO - }) - } if (!data.isImagickEnabled) { messages.push({ msg: t( |