After a form-submit in Kohana, I want the user to go back to the homepage. Is it correct to use a redirect for this?
public function action_edit($id)
{
if (!empty($post))
{
if ($post->validate())
{
$this->request->redirect(Route::get('admin')->uri(array('action' => 'list')));
}
}
}
Thanks in advance!