diff options
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/js.js | 1 | ||||
-rw-r--r-- | core/js/setupchecks.js | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index 5f7df5fb551..8380d56e31e 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1245,7 +1245,6 @@ function initCore() { $('.selectedActions a').tipsy({gravity:'s', live:true}); $('a.action.delete').tipsy({gravity:'e', live:true}); $('a.action').tipsy({gravity:'s', live:true}); - $('td .modified').tipsy({gravity:'s', live:true}); $('td.lastLogin').tipsy({gravity:'s', html:true}); $('input').tipsy({gravity:'w'}); $('.extra-data').tipsy({gravity:'w', live:true}); 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')); } |