Fix: decode session data into superglobals after re-reading

pull/1/head
thomascube 13 years ago
parent 710b1bd684
commit 8c2b883bf0

@ -399,9 +399,12 @@ class rcube_session
public function reload()
{
if ($this->key && $this->memcache)
$this->mc_read($this->key);
$data = $this->mc_read($this->key);
else if ($this->key)
$this->db_read($this->key);
$data = $this->db_read($this->key);
if ($data)
session_decode($data);
}

Loading…
Cancel
Save