@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | if ($exception instanceof UnauthorizedImageAccessException) { |
| 58 | 58 | $image = __DIR__ . '/../../../../../public/images/unauthorized-access.png'; |
| 59 | 59 | $response->setStatusCode(Response::STATUS_CODE_403) |
| 60 | - ->setContent(file_get_contents($image)) |
|
| 61 | - ->getHeaders() |
|
| 62 | - ->addHeaderLine('Content-Type', 'image/png'); |
|
| 60 | + ->setContent(file_get_contents($image)) |
|
| 61 | + ->getHeaders() |
|
| 62 | + ->addHeaderLine('Content-Type', 'image/png'); |
|
| 63 | 63 | $e->stopPropagation(); |
| 64 | 64 | $response->sendHeaders(); |
| 65 | 65 | //echo file_get_contents($image); |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | $application = $e->getApplication(); |
| 73 | - $auth = $application->getServiceManager()->get('AuthenticationService'); |
|
| 73 | + $auth = $application->getServiceManager()->get('AuthenticationService'); |
|
| 74 | 74 | |
| 75 | 75 | if (!$auth->hasIdentity()) { |
| 76 | 76 | $routeMatch = $e->getRouteMatch(); |
@@ -102,9 +102,9 @@ discard block |
||
| 102 | 102 | $model->setTemplate($this->getExceptionTemplate()); |
| 103 | 103 | $e->setResult($model); |
| 104 | 104 | |
| 105 | - // $statusCode = $response->getStatusCode(); |
|
| 106 | - // if ($statusCode === 200) { |
|
| 105 | + // $statusCode = $response->getStatusCode(); |
|
| 106 | + // if ($statusCode === 200) { |
|
| 107 | 107 | $response->setStatusCode(Response::STATUS_CODE_403); |
| 108 | - // } |
|
| 108 | + // } |
|
| 109 | 109 | } |
| 110 | 110 | } |