Bug #20059 » 10501.diff
typo3/sysext/install/mod/class.tx_install.php (working copy) | ||
---|---|---|
// ****************************
|
||
$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']) {
|
||
... | ... | |
$content = '<form action="index.php" method="post" name="passwordForm">
|
||
<input type="password" name="password"><br />
|
||
<input type="hidden" name="redirect_url" value="'.$redirect_url.'">
|
||
<input type="hidden" name="redirect_url" value="' . htmlspecialchars($redirect_url) . '">
|
||
<input type="submit" value="Log in"><br />
|
||
<br />
|