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 10 years ago committed by Morris Jobke
parent 580deb09f8
commit a58ca89e7f
  1. 5
      lib/base.php

@ -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());

Loading…
Cancel
Save