Bug #97996 » local_history.patch
web/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php → web/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php (date 1658481372454) | ||
---|---|---|
$this->user['ses_data'] = serialize($this->sessionData);
|
||
$this->logger->debug('setAndSaveSessionData: ses_id = ' . sha1($this->id));
|
||
//id is NULL on CLI
|
||
if ($this->id) {
|
||
if (!empty($this->id)) {
|
||
$updatedSession = $this->getSessionBackend()->update(
|
||
$this->id,
|
||
['ses_data' => $this->user['ses_data']]
|
||
);
|
||
$this->user = array_merge($this->user ?? [], $updatedSession);
|
||
}
|
||
$this->user = array_merge($this->user ?? [], $updatedSession);
|
||
$this->user = array_merge($this->user ?? [], $updatedSession?? []);
|
||
}
|
||
/*************************
|