hi all,i have no error when using old fuel.
but when upgrade to to rc2,
i change from
$this->output = View::factory('sample',$data);
to
$this->response->body = View::factory('sample',$data);
here is the error
ErrorException [ Error ]: Call to a member function get_title() on a non-object
the controller
$data = $feed->get_items();
$this->response->body = View::factory('sample',$data);
the view
foreach($feed->get_items() as $item)
{
echo $item->get_title();
}