diff --git a/typo3/sysext/em/classes/install/class.tx_em_install.php b/typo3/sysext/em/classes/install/class.tx_em_install.php index 4bd5597933d090b7fa7fe3d6591eaa820d3f0a52..4c88076205ff7490a8b0b66deb76d8af9d2ba102 100644 --- a/typo3/sysext/em/classes/install/class.tx_em_install.php +++ b/typo3/sysext/em/classes/install/class.tx_em_install.php @@ -1454,14 +1454,13 @@ class tx_em_Install { if ($updates || $configForm) { if ($configForm) { - $updates = $configForm; + $updates = $formWrap[0] . $configForm . $formWrap[1]; } else { $updates = $formWrap[0] . $updates . $addFields . ' <br /><input type="submit" name="write" id="update-submit-' . $extKey . '" value="' . $GLOBALS['LANG']->getLL('updatesForm_make_updates') . '" /> ' . $formWrap[1]; } } - return $updates; }