Changeset 1344
- Timestamp:
- 02/20/08 11:37:09 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/ipo/session/stubAbstractSession.php
r1281 r1344 29 29 * @var bool 30 30 */ 31 pr ivate$isNew = false;31 protected $isNew = false; 32 32 /** 33 33 * the current token of the session, changes on every instantiation … … 35 35 * @var string 36 36 */ 37 pr ivate$token = '';37 protected $token = ''; 38 38 /** 39 39 * name of the session … … 41 41 * @var string 42 42 */ 43 pr ivate$sessionName = '';43 protected $sessionName = ''; 44 44 /** 45 45 * cache for objects … … 47 47 * @var array<string,object> 48 48 */ 49 pr ivate$objectCache = array();49 protected $objectCache = array(); 50 50 51 51 /** … … 57 57 public final function __construct(stubRequest $request, $sessionName) 58 58 { 59 $this->sessionName = $sessionName; 59 60 $this->doConstruct($request, $sessionName); 60 $this->sessionName = $sessionName;61 61 if ($this->hasValue(stubSession::START_TIME) == false || $this->doGetValue(stubSession::FINGERPRINT) != $this->getFingerprint()) { 62 62 if ($this->hasValue(stubSession::START_TIME) == false) {
