return \Response::forge(\View::forge('welcome/index'));Alternatively, you may return something that can be cast as string (like for example a View), which will be wrapped into a Response by the Request object. If your controller action doesn't return anything, or it returns something that can not be cast as string, this error will be logged.
Nothing functional has changed there. If your action doesn't return anything, it will use $this->template, which will be wrapped in a Response by the Controller_Template's after() method. It will fail if your controller has an after(), doesn't return a Response, and doesn't return the result of the call to the parent.Thomas Edwards wrote on Friday 3rd of February 2012:Right, figure it out, I've been using Controller_Template for my other apps and this changed. Got it now!
It looks like you're new here. If you want to get involved, click one of these buttons!