subtract 100

This commit is contained in:
flash 2023-10-13 23:58:17 +00:00
parent 280b0ee266
commit f2f5358589

View file

@ -24,7 +24,7 @@ class RoutingContext {
public function registerDefaultErrorPages(): void {
$this->router->get('/error-401.html', fn() => $this->templating->render('errors/401'));
$this->router->get('/error-403.html', fn() => $this->templating->render('errors/403'));
$this->router->get('/error-404.html', fn() => $this->templating->render('errors/504'));
$this->router->get('/error-404.html', fn() => $this->templating->render('errors/404'));
$this->router->get('/error-500.html', fn() => $this->templating->render('errors/500'));
$this->router->get('/error-503.html', fn() => $this->templating->render('errors/503'));