summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRobin McCorkell <rmccorkell@owncloud.com>2015-07-28 21:26:44 +0100
committerRobin McCorkell <rmccorkell@owncloud.com>2015-07-28 21:26:44 +0100
commit6d54d2fad71a57d08cfd5a5a2d76948ac0983ff6 (patch)
tree1cb1415dd7d52a44b3ce43d5196aeb8af9f73677 /core
parent6f72c3746403cdba5dbaae9a21870f0db0e5226e (diff)
parent0d515de13e0832447ed341c0b8377e01d350e48c (diff)
downloadnextcloud-server-6d54d2fad71a57d08cfd5a5a2d76948ac0983ff6.tar.gz
nextcloud-server-6d54d2fad71a57d08cfd5a5a2d76948ac0983ff6.zip
Merge pull request #17912 from owncloud/detect-old-openssl-versions
Detect old NSS and OpenSSL versions
Diffstat (limited to 'core')
-rw-r--r--core/js/setupchecks.js3
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'));
}