Skip to content
Snippets Groups Projects
Commit b76342d3 authored by Morton Jonuschat's avatar Morton Jonuschat Committed by Markus Klein
Browse files

[BUGFIX] InstallTool: Mark upgrade wizards as done on initial install

Some upgrade wizards cannot detect that no work needs to be done on a
fresh install. Mark all wizards as done in the default configuration
after the installation is finished.

Resolves: #67637
Releases: master
Change-Id: I7d8c203da3f8e3cd53b37fd09cab58cb43e16a87
Reviewed-on: http://review.typo3.org/43011


Reviewed-by: default avatarNicole Cordes <typo3@cordes.co>
Tested-by: default avatarNicole Cordes <typo3@cordes.co>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarMarkus Klein <markus.klein@typo3.org>
Tested-by: default avatarMarkus Klein <markus.klein@typo3.org>
parent 53a74252
Branches
Tags
No related merge requests found
......@@ -50,6 +50,14 @@ class DefaultConfiguration extends AbstractStepAction {
// Setting SYS/isInitialInstallationInProgress to FALSE marks this instance installation as complete
$configurationValues['SYS/isInitialInstallationInProgress'] = FALSE;
// Mark upgrade wizards as done
$this->loadExtLocalconfDatabaseAndExtTables();
if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update'])) {
foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update'] as $updateClassName) {
$configurationValues['INSTALL/wizardDone/' . $updateClassName] = 1;
}
}
/** @var $configurationManager \TYPO3\CMS\Core\Configuration\ConfigurationManager */
$configurationManager = $this->objectManager->get(\TYPO3\CMS\Core\Configuration\ConfigurationManager::class);
$configurationManager->setLocalConfigurationValuesByPathValuePairs($configurationValues);
......
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