diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-07-27 16:29:05 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-07-28 15:32:19 +0200 |
commit | 0d515de13e0832447ed341c0b8377e01d350e48c (patch) | |
tree | cbfec31f51744299f7ee1fb807eb96f0bdb9709b /core/js/setupchecks.js | |
parent | c34e63bb1f9752892d3c36b50e461b284f822a36 (diff) | |
download | nextcloud-server-0d515de13e0832447ed341c0b8377e01d350e48c.tar.gz nextcloud-server-0d515de13e0832447ed341c0b8377e01d350e48c.zip |
Detect old NSS and OpenSSL versions
This will detect old NSS and OpenSSL versions and show appropriate errors in the admin interface.
Fixes https://github.com/owncloud/core/issues/17901
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 02d7ef94b7e..35f24b188fa 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -69,6 +69,9 @@ t('core', '/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href="{docLink}">documentation</a>.', {docLink: data.securityDocs}) ); } + if(data.isUsedTlsLibOutdated) { + messages.push(data.isUsedTlsLibOutdated); + } } else { messages.push(t('core', 'Error occurred while checking server setup')); } |