From 8c2b883bf07e5686915f1ec8d1c746e39ad91e32 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 11 Nov 2011 07:12:28 -0500 Subject: [PATCH] Fix: decode session data into superglobals after re-reading --- program/include/rcube_session.php | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/program/include/rcube_session.php b/program/include/rcube_session.php index 22aa550..7c60973 100644 --- a/program/include/rcube_session.php +++ b/program/include/rcube_session.php @@ -399,9 +399,12 @@ 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); } -- Gitblit v1.9.1