mirror of
https://github.com/flarum/core.git
synced 2025-08-20 15:21:49 +02:00
Merge branch 'master' of https://github.com/flarum/core
This commit is contained in:
@@ -14,4 +14,8 @@ use Exception;
|
||||
|
||||
class PermissionDeniedException extends Exception
|
||||
{
|
||||
public function __construct($message = null, $code = 403, Exception $previous = null)
|
||||
{
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
}
|
||||
|
@@ -52,7 +52,7 @@ class HandleErrors implements ErrorMiddlewareInterface
|
||||
$status = $errorCode;
|
||||
}
|
||||
|
||||
if ($this->debug && $errorCode !== 404) {
|
||||
if ($this->debug && ! in_array($errorCode, [403, 404])) {
|
||||
$whoops = new WhoopsMiddleware;
|
||||
|
||||
return $whoops($error, $request, $response, $out);
|
||||
|
Reference in New Issue
Block a user