Changeset 948
- Timestamp:
- 07/05/10 23:53:56 (2 months ago)
- Files:
-
- 1 modified
-
trunk/engine/modules/session/Session.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/engine/modules/session/Session.class.php
r891 r948 96 96 */ 97 97 public function GetId() { 98 return $this->sId; 98 if ($this->bUseStandartSession) { 99 return session_id(); 100 } else { 101 return $this->sId; 102 } 99 103 } 100 104
