mirror of
https://github.com/friendica/friendica
synced 2025-04-26 01:50:11 +00:00
Use Native Session functions (global "$_SESSION" variable) for Memory class because of the direct usage of the $_SESSION class all around the codebase
This commit is contained in:
parent
eca3396851
commit
b9f8762eb3
4 changed files with 13 additions and 73 deletions
|
@ -47,7 +47,7 @@ class SessionFactory
|
|||
|
||||
try {
|
||||
if ($mode->isInstall() || $mode->isBackend()) {
|
||||
$session = new Session\Memory();
|
||||
$session = new Session\Memory($config, $cookie);
|
||||
} else {
|
||||
$session_handler = $config->get('system', 'session_handler', self::DEFAULT);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue