Vivek Goel
Vivek Goel

Reputation: 24150

url::redirect in kohana 3.1

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

Upvotes: 5

Views: 9574

Answers (1)

alex
alex

Reputation: 490243

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

Upvotes: 11

Related Questions