From 6108c015b387b9132d96a0cf01344fba14805f41 Mon Sep 17 00:00:00 2001 From: thinkphp Date: Thu, 11 Apr 2013 15:12:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A8=A1=E6=9D=BF=E7=BC=93=E5=AD=98=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E8=B7=AF=E5=BE=84=E6=94=B9=E5=8F=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Think/Controller.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Think/Controller.php b/Think/Controller.php index bdfc1690..726dc032 100644 --- a/Think/Controller.php +++ b/Think/Controller.php @@ -16,12 +16,12 @@ class Controller { public function __construct(){ $config['template_options'] = [ - 'tpl_path' => MODULE_PATH.'view/', - 'cache_path' => MODULE_PATH.'cache/', + 'tpl_path' => MODULE_PATH.'View/', + 'cache_path' => RUNTIME_PATH.'Cache/', 'compile_type' => 'File', 'taglib_build_in' => 'cx', 'cache_options' => [ - 'temp' => APP_PATH.'runtime/temp/', + 'temp' => RUNTIME_PATH.'Temp/', ], ]; $config['http_content_type'] = 'text/html';