Only show message in the UI when the checker is enabled (#24773)

This commit is contained in:
Joas Schilling 2016-05-30 14:50:45 +02:00 committed by Thomas Müller
parent 0ec4098955
commit abd8475336
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class TemplateLayout extends \OC_Template {
// Code integrity notification
$integrityChecker = \OC::$server->getIntegrityCodeChecker();
if(\OC_User::isAdminUser(\OC_User::getUser()) && !$integrityChecker->hasPassedCheck()) {
if(\OC_User::isAdminUser(\OC_User::getUser()) && $integrityChecker->isCodeCheckEnforced() && !$integrityChecker->hasPassedCheck()) {
\OCP\Util::addScript('core', 'integritycheck-failed-notification');
}