/** * Handle input, produce output * * Switches on request method; either shows the form or handles its input. * * @return void */ protected function handle() { if (common_is_real_login()) { common_redirect(common_local_url('all', array('nickname' => $this->scoped->nickname)), 307); } return parent::handle(); }