Changeset 8c2b883 in github


Ignore:
Timestamp:
Nov 11, 2011 7:12:28 AM (19 months ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
1cb0d64
Parents:
710b1bd
Message:

Fix: decode session data into superglobals after re-reading

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_session.php

    r81f5dd7 r8c2b883  
    400400  { 
    401401    if ($this->key && $this->memcache) 
    402       $this->mc_read($this->key); 
     402      $data = $this->mc_read($this->key); 
    403403    else if ($this->key) 
    404       $this->db_read($this->key); 
     404      $data = $this->db_read($this->key); 
     405 
     406    if ($data) 
     407     session_decode($data); 
    405408  } 
    406409 
Note: See TracChangeset for help on using the changeset viewer.