I cannot find a function url::redirectin kohana 3.1 What is the new name for this function? (If it still exists!)
url::redirect
In Cohan 3 has been changed ...
$this->request->redirect($newUrl);
You can use this in the controller.
Otherwise use (as biakaveron kindly pointed out) ...
Request::current()->redirect($newUrl);