Ejemplo n.º 1
1
 /**
  * Load the user session or create a new one
  *
  * @param	string	The sessions name.
  * @return	object	JSession on success. May call exit() on database error.
  * @since	Nooku Server 0.7
  */
 protected function _loadSession($name, $ssl = false, $auto_start = true)
 {
     if ($this->getCfg('force_ssl') >= 1) {
         $ssl = true;
     }
     return parent::_loadSession($name, $ssl, $auto_start);
 }