diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-07-27 16:29:05 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-07-28 16:02:06 +0200 |
commit | 3133949418950f6a47431847d27380cd364028ae (patch) | |
tree | 504ea4fae8cf0d449cd955d26f3d1e3cd320de4a /core | |
parent | a949f6c5762c12f53559fb4329a9ec9e7ce5b415 (diff) | |
download | nextcloud-server-3133949418950f6a47431847d27380cd364028ae.tar.gz nextcloud-server-3133949418950f6a47431847d27380cd364028ae.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')
-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')); } |