Changeset 948

Show
Ignore:
Timestamp:
07/05/10 23:53:56 (2 months ago)
Author:
ort
Message:

fix session

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/engine/modules/session/Session.class.php

    r891 r948  
    9696         */      
    9797        public function GetId() { 
    98                 return $this->sId; 
     98                if ($this->bUseStandartSession) { 
     99                        return session_id(); 
     100                } else { 
     101                        return $this->sId; 
     102                } 
    99103        } 
    100104