芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/system/classes/kohana/controller/template.php
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