Index: typo3/sysext/install/mod/class.tx_install.php =================================================================== --- typo3/sysext/install/mod/class.tx_install.php (revision 6190) +++ typo3/sysext/install/mod/class.tx_install.php (working copy) @@ -255,7 +255,7 @@ // **************************** $this->INSTALL = t3lib_div::_GP('TYPO3_INSTALL'); $this->mode = t3lib_div::_GP('mode'); - $this->step = t3lib_div::_GP('step'); + $this->step = intval(t3lib_div::_GP('step')); $this->redirect_url = t3lib_div::_GP('redirect_url'); if ($_GET['TYPO3_INSTALL']['type']) { @@ -331,7 +331,7 @@ * Returns true if submitted password is ok. Else displays a form in which to enter password. * * @param [type] $uKey: ... - * @return bool whether the submitted password is ok + * @return bool whether the submitted password is ok */ function checkPassword($uKey) { $p = t3lib_div::_GP('password'); @@ -386,7 +386,7 @@ $content = '
'; $this->output($this->outputWrapper($content)); @@ -653,7 +653,7 @@