Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit 533c512

Browse files
committed
upgrader fix
1 parent ad80afb commit 533c512

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG-2.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
CHANGELOG - ZIKULA 2.0.x
22
========================
33

4-
2.0.9 (unreleased)
4+
2.0.9 (2018-08-06)
55
------------------
66

77
- Fixes:
8-
- ...
8+
- Fixed invalid parameter update for frozen container in the upgrader.
99

1010

1111
2.0.8 (2018-08-05)

src/lib/Zikula/Bundle/CoreInstallerBundle/Controller/UpgraderController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function upgradeAction(Request $request, $stage)
5757
$wizard = new Wizard($this->container, realpath(__DIR__ . '/../Resources/config/upgrade_stages.yml'));
5858
$currentStage = $wizard->getCurrentStage($stage);
5959
if ($currentStage instanceof WizardCompleteInterface) {
60-
$this->container->setParameter('upgrading', false);
60+
$yamlDumper->setParameter('upgrading', false);
6161

6262
return $currentStage->getResponse($request);
6363
}

0 commit comments

Comments
 (0)