Use ISession::clear

The native approach using the PHP calls will not work properly with the cryptowrapper and thus this code is effectively doing nothing at the moment.
remotes/origin/files-ui-webdav-upload
Lukas Reschke 2016-01-09 23:49:49 +07:00 committed by Morris Jobke
parent 580deb09f8
commit a58ca89e7f
1 changed files with 1 additions and 4 deletions

@ -450,11 +450,8 @@ class OC {
if ($session->exists('LAST_ACTIVITY') && (time() - $session->get('LAST_ACTIVITY') > $sessionLifeTime)) {
if (isset($_COOKIE[session_name()])) {
setcookie(session_name(), null, -1, self::$WEBROOT ? : '/');
unset($_COOKIE[session_name()]);
}
session_unset();
session_destroy();
session_start();
$session->clear();
}
$session->set('LAST_ACTIVITY', time());