protected function _handleInput()
 {
     if ($this->autodetect) {
         $this->current = Project_Navigator::getNavPoint(Server::get('REQUEST_URL'));
     } elseif ($this->current !== null) {
         Project_Navigator::get($this->current);
     }
     // check if registered
 }
 protected function _spamDetected()
 {
     $this->saveSessionVars();
     $this->_redirection = Project_Navigator::getNavPoint(Server::get('REQUEST_URL'));
 }
 protected function _getSuccessPageNavPoint()
 {
     return $this->successPage !== NULL ? $this->successPage : Project_Navigator::getNavPoint(Server::get('REQUEST_URL'));
 }
 protected function _updateSuccessTemplate()
 {
     //$this->__updateFormTemplate();
     $this->_redirection = Project_Navigator::getNavPoint(Server::get('REQUEST_URL'));
 }