Index: typo3/sysext/install/mod/class.tx_install.php =================================================================== --- typo3/sysext/install/mod/class.tx_install.php (revision 9758) +++ typo3/sysext/install/mod/class.tx_install.php (working copy) @@ -289,6 +289,11 @@ if ($this->mode !== '123') { $this->mode = ''; } + if (t3lib_div::_GP('step') === 'go') { + $this->step = 'go'; + } else { + $this->step = intval(t3lib_div::_GP('step')); + } // Let DBAL decide whether to load itself $dbalLoaderFile = $this->backPath . 'sysext/dbal/class.tx_dbal_autoloader.php'; @@ -306,11 +311,6 @@ ); } } - if (t3lib_div::_GP('step') === 'go') { - $this->step = 'go'; - } else { - $this->step = intval(t3lib_div::_GP('step')); - } $this->redirect_url = t3lib_div::sanitizeLocalUrl(t3lib_div::_GP('redirect_url')); $this->INSTALL['type'] = '';