From 455b3b21f4c0072cd0ab4c9ad11470dae61e14cd Mon Sep 17 00:00:00 2001 From: thinkphp Date: Tue, 29 Dec 2015 20:14:23 +0800 Subject: [PATCH] =?UTF-8?q?error=E7=B1=BB=E7=9A=84halt=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E6=94=B9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/error.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/think/error.php b/library/think/error.php index 688e8b52..31c5bfa8 100644 --- a/library/think/error.php +++ b/library/think/error.php @@ -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; }