예제 #1
0
파일: auth.php 프로젝트: egregor-dev/SatCMS
 function update_session($force = false)
 {
     if ($force || $this->session->last_update + $this->_update_interval < time()) {
         $this->session->last_update();
         $this->user->last_update();
         $this->update_cookies();
     }
 }