error类的halt方法改进

This commit is contained in:
thinkphp
2015-12-29 20:14:23 +08:00
parent ab7872b53d
commit 455b3b21f4

View File

@@ -127,7 +127,7 @@ class Error
// 异常信息输出监听
APP_HOOK && Hook::listen('error_output', $e);
// 输出异常内容
Response::send($e, $type);
Response::send($e, $type, Config::get('response_return'));
}
exit;
}