改进Query类的join方法

This commit is contained in:
thinkphp
2016-04-27 12:12:55 +08:00
parent fd6ca38265
commit 8cb52f60dd
2 changed files with 3 additions and 3 deletions

View File

@@ -341,7 +341,7 @@ function trace($log = '[think]', $level = 'log')
*/
function view($template = '', $vars = [])
{
return View::instance(Config::get('template'))->fetch($template, $vars);
return View::instance(Config::get('template'), Config::get('view_replace_str'))->fetch($template, $vars);
}
/**