diff --git a/setup/upgrade.php b/setup/upgrade.php index 8b2fce7..b70da82 100644 --- a/setup/upgrade.php +++ b/setup/upgrade.php @@ -77,7 +77,9 @@ function performAllUpgrades () { $upgrades = describeUpgrade($lastVersion, $currentVersion); foreach ($upgrades as $upgrade) { - printf('
%s
', htmlspecialchars($upgrade->getDescription())); + printf('
%s
' . "\n", htmlspecialchars($upgrade->getDescription())); + ob_flush(); + flush(); $res = $upgrade->performUpgrade(); printf('
%s
', showResult($res)); print '
' . "\n";