Commit 7b46dc34 by Qiang Xue

Fixed incorrect error handling.

parent f22d409e
...@@ -93,10 +93,10 @@ class ErrorHandler extends Component ...@@ -93,10 +93,10 @@ class ErrorHandler extends Component
return; return;
} }
$useErrorView = $response->format === \yii\web\Response::FORMAT_HTML && (!YII_DEBUG || $exception instanceof UserException);
$response = Yii::$app->getResponse(); $response = Yii::$app->getResponse();
$useErrorView = $response->format === \yii\web\Response::FORMAT_HTML && (!YII_DEBUG || $exception instanceof UserException);
if ($useErrorView && $this->errorAction !== null) { if ($useErrorView && $this->errorAction !== null) {
$result = Yii::$app->runAction($this->errorAction); $result = Yii::$app->runAction($this->errorAction);
if ($result instanceof Response) { if ($result instanceof Response) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment