Project

General

Profile

Bug #24980 » 17511_trunk.patch

Administrator Admin, 2011-02-09 13:51

View differences:

typo3/sysext/install/mod/class.tx_install_session.php (working copy)
*/
private function getSessionSavePath() {
return sprintf(
$this->typo3tempPath . '/' . $this->sessionPath,
$this->typo3tempPath . $this->sessionPath,
md5(
'session:' .
$GLOBALS['TYPO3_CONF_VARS']['BE']['installToolPassword']
......
*/
public function write($id, $sessionData) {
$sessionFile = $this->getSessionFile($id);
if ($fp = @fopen($sessionFile, 'w')) {
$return = fwrite($fp, $sessionData);
fclose($fp);
return $return;
} else {
return FALSE;
}
return t3lib_div::writeFile($sessionFile, $sessionData);
}
/**
(3-3/3)