Esempio n. 1
0
 /**
  * Used to renew a session id
  *
  * In your controller: $this->Session->renew();
  *
  * @return void
  * @access public
  */
 public function renew()
 {
     if ($this->__active === true) {
         $this->__start();
         parent::renew();
     }
 }