diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-26 15:31:09 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-11-07 12:25:03 +0100 |
commit | 147b29fca2f36cc0d633486e30b7694c157b26e0 (patch) | |
tree | 8b15ce10bb80276b12a07a2a90d74f13bc17abce /core/js/setupchecks.js | |
parent | ddd13a90d81e3198d06ac35b1dd4674a87e677ad (diff) | |
download | nextcloud-server-147b29fca2f36cc0d633486e30b7694c157b26e0.tar.gz nextcloud-server-147b29fca2f36cc0d633486e30b7694c157b26e0.zip |
Migrate Randomness secure check to 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 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index a334c0bd789..029096b43b2 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -224,14 +224,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } - if(!data.isRandomnessSecure) { - messages.push({ - msg: t('core', 'No suitable source for randomness found by PHP which is highly discouraged for security reasons. Further information can be found in the {linkstart}documentation ↗{linkend}.') - .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.securityDocs + '">') - .replace('{linkend}', '</a>'), - type: OC.SetupChecks.MESSAGE_TYPE_ERROR - }); - } if(data.isUsedTlsLibOutdated) { messages.push({ msg: data.isUsedTlsLibOutdated, |