Skip to content
Snippets Groups Projects
Commit 0bf488ef authored by Michael Stucki's avatar Michael Stucki Committed by Christian Kuhn
Browse files

[BUGFIX] Check if install tool enable file exists before removing it

The is_file() check got lost during the refactoring in
d855b470.

Change-Id: Ia1688099a7ccd32667562e8c7f83fd54bb669f4a
Resolves: #80354
Releases: master, 7.6
Reviewed-on: https://review.typo3.org/52100


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarJosef Glatz <josef.glatz@typo3.org>
Tested-by: default avatarJosef Glatz <josef.glatz@typo3.org>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent b1718cab
Branches
Tags
No related merge requests found
......@@ -133,7 +133,7 @@ For each website you need a TypoScript template on the main page of your website
);
$formProtection->clean();
if (!EnableFileService::isInstallToolEnableFilePermanent()) {
if (EnableFileService::installToolEnableFileExists() && !EnableFileService::isInstallToolEnableFilePermanent()) {
EnableFileService::removeInstallToolEnableFile();
}
......
......@@ -73,7 +73,7 @@ class ToolController extends AbstractController
{
$action = $this->getAction();
if ($action === 'logout') {
if (!EnableFileService::isInstallToolEnableFilePermanent()) {
if (EnableFileService::installToolEnableFileExists() && !EnableFileService::isInstallToolEnableFilePermanent()) {
EnableFileService::removeInstallToolEnableFile();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment