mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-09 11:42:28 +01:00
Merge branch 'master' into master
This commit is contained in:
commit
0ba3a50d49
@ -51,7 +51,7 @@ class Handler extends ExceptionHandler {
|
||||
return redirect()->to(env('SETTING_INDEX_REDIRECT'));
|
||||
}
|
||||
// Otherwise, show a nice error page
|
||||
return view('errors.404');
|
||||
return response(view('errors.404'), 404);
|
||||
}
|
||||
if ($e instanceof HttpException) {
|
||||
// Handle HTTP exceptions thrown by public-facing controllers
|
||||
@ -60,11 +60,15 @@ class Handler extends ExceptionHandler {
|
||||
|
||||
if ($status_code == 500) {
|
||||
// Render a nice error page for 500s
|
||||
return view('errors.500');
|
||||
return response(view('errors.500'), 500);
|
||||
}
|
||||
else {
|
||||
// If not 500, render generic page
|
||||
return response(view('errors.generic', ['status_code' => $status_code, 'status_message' => $status_message]), $status_code);
|
||||
return response(
|
||||
view('errors.generic', [
|
||||
'status_code' => $status_code,
|
||||
'status_message' => $status_message
|
||||
]), $status_code);
|
||||
}
|
||||
}
|
||||
if ($e instanceof ApiException) {
|
||||
|
BIN
docs/logo.png
BIN
docs/logo.png
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 9.2 KiB |
@ -17,11 +17,11 @@
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
width: 18em;
|
||||
width: 17em;
|
||||
}
|
||||
|
||||
.logo-well {
|
||||
width: 19em;
|
||||
width: 20.5em;
|
||||
|
||||
-webkit-animation: colorpulse 20s infinite;
|
||||
animation: colorpulse 20s infinite;
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 9.8 KiB |
Loading…
Reference in New Issue
Block a user