FALSE, ); public function action_manual() { $this->auto_render = FALSE; $cno = ORM::factory('Checkout_Notify',$this->request->param('id')); if (! $cno->loaded()) throw HTTP_Exception::factory(404,'Not found?'); // Process our Notify try { $this->response->body($cno->process()); } catch (Exception $e) { Kohana_Exception::log($e); echo Debug::vars($e); die(); } $this->response->headers('Content-Type','text/plain'); $this->response->headers('Content-Length',(string)$this->response->content_length()); $this->response->headers('Last-Modified',time()); } } ?>