Remove hook for initSession
It's not used anyways and allowed to manipulate the state of the session. Also removed the code handling this. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
09b9f94c38
commit
8d2d051841
10
lib/base.php
10
lib/base.php
|
@ -419,14 +419,8 @@ class OC {
|
|||
$sessionName = OC_Util::getInstanceId();
|
||||
|
||||
try {
|
||||
// Allow session apps to create a custom session object
|
||||
$useCustomSession = false;
|
||||
$session = self::$server->getSession();
|
||||
OC_Hook::emit('OC', 'initSession', ['session' => &$session, 'sessionName' => &$sessionName, 'useCustomSession' => &$useCustomSession]);
|
||||
if (!$useCustomSession) {
|
||||
// set the session name to the instance id - which is unique
|
||||
$session = new \OC\Session\Internal($sessionName);
|
||||
}
|
||||
// set the session name to the instance id - which is unique
|
||||
$session = new \OC\Session\Internal($sessionName);
|
||||
|
||||
$cryptoWrapper = \OC::$server->getSessionCryptoWrapper();
|
||||
$session = $cryptoWrapper->wrapSession($session);
|
||||
|
|
Loading…
Reference in New Issue