*/
protected $_session = NULL;
+ /**
+ * Current php Session ID : needed to detect if the session is changed
+ *
+ * @var string
+ */
+ protected $sessionID;
+
/**
* We only need one instance of this object. So we use the singleton
* pattern and cache the instance in this variable
* Is this a read operation, in this case, the session will not be touched.
*/
public function initialize($isRead = FALSE) {
+ // remove $_SESSION reference if session is changed
+ if (($sid = session_id()) !== $this->sessionID) {
+ $this->_session = NULL;
+ $this->sessionID = $sid;
+ }
// lets initialize the _session variable just before we need it
// hopefully any bootstrapping code will actually load the session from the CMS
if (!isset($this->_session)) {