thomascube
2011-11-11 8c2b883bf07e5686915f1ec8d1c746e39ad91e32
Fix: decode session data into superglobals after re-reading

1 files modified
7 ■■■■ changed files
program/include/rcube_session.php 7 ●●●● patch | view | raw | blame | history
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);
  }