url::redirect in kohana 3.1
I can't find function url::redirect
in kohana 3.1
It has been changed in Kohana 3 to...
$this->request->redirect($newUrl);
You can use that in a controller.
Otherwise, use (as biakaveron kindly pointed out)...
Request::current()->redirect($newUrl);
精彩评论