url::redirect in kohana 3.1

Vivek Goel picture Vivek Goel · Apr 14, 2011 · Viewed 9.2k times · Source

I can't find function url::redirect in kohana 3.1
What is the new name for this function ? (If it still exists !)

Answer

alex picture alex · Apr 14, 2011

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);