芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/www/resuleg/system/classes/kohana/controller/.svn/text-base/template.php.svn-base
auto_render === TRUE) { // Load the template $this->template = View::factory($this->template); } } /** * Assigns the template [View] as the request response. */ public function after() { if ($this->auto_render === TRUE) { $this->response->body($this->template->render()); } parent::after(); } } // End Controller_Template