改进Think\Error类的appShutdown方法

This commit is contained in:
thinkphp
2013-04-01 13:33:40 +08:00
parent a248444605
commit 39282ac471

View File

@@ -65,7 +65,7 @@ class Error {
Log::save();
if ($e = error_get_last()) {
ob_end_clean();
self::appError($e['type'],$e['message'],$e['file'],$e['line']);
self::halt($e);
}
}