preserve 3rd party values in in the Session destructor

This commit is contained in:
Robin Appelman 2013-12-09 12:38:27 +01:00
parent bc3650e48c
commit a36bf5c2b5
2 changed files with 11 additions and 2 deletions

View File

@ -26,10 +26,19 @@ class Internal extends Memory {
}
public function __destruct() {
$_SESSION = $this->data;
$_SESSION = array_merge($_SESSION, $this->data);
session_write_close();
}
/**
* @param string $key
*/
public function remove($key) {
// also remove it from $_SESSION to prevent re-setting the old value during the merge
unset($_SESSION[$key]);
parent::remove($key);
}
public function clear() {
session_unset();
@session_regenerate_id(true);

View File

@ -11,7 +11,7 @@ namespace OC\Session;
/**
* Class Internal
*
* store session data in an in-memory array, not persistance
* store session data in an in-memory array, not persistent
*
* @package OC\Session
*/