Index: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_securitystatus.php --- typo3/sysext/reports/reports/status/class.tx_reports_reports_status_securitystatus.php Base (BASE) +++ typo3/sysext/reports/reports/status/class.tx_reports_reports_status_securitystatus.php Locally Modified (Based On LOCAL) @@ -248,7 +248,8 @@ $enableInstallToolFileExists = is_file($enableInstallToolFile); - if ($enableInstallToolFileExists || ($enableInstallToolFileExists && trim(file_get_contents($enableInstallToolFile)) === 'KEEP_FILE')) { \ No newline at end of file + // Check whether the file ENABLE_INSTALL_TOOL contains the string "KEEP_FILE" which permanently unlocks the install tool + if ($enableInstallToolFileExists && trim(file_get_contents($enableInstallToolFile)) === 'KEEP_FILE') { \ No newline at end of file $value = $GLOBALS['LANG']->getLL('status_enabled'); $severity = tx_reports_reports_status_Status::WARNING;