From 0d515de13e0832447ed341c0b8377e01d350e48c Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 27 Jul 2015 16:29:05 +0200 Subject: 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 --- core/js/setupchecks.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/js') 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 documentation.', {docLink: data.securityDocs}) ); } + if(data.isUsedTlsLibOutdated) { + messages.push(data.isUsedTlsLibOutdated); + } } else { messages.push(t('core', 'Error occurred while checking server setup')); } -- cgit v1.2.3