Url :: redirect to kohana 3.1

I cannot find a function url::redirectin kohana 3.1
 What is the new name for this function? (If it still exists!)

+5
source share
1 answer

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);
+11
source

All Articles