Session handling bugfix, profile frontend WIP

This commit is contained in:
2024-04-06 11:52:22 +02:00
parent b68ff85578
commit fe81e0f6fa
14 changed files with 422 additions and 470 deletions

View File

@@ -70,9 +70,12 @@ if ($installation) {
} catch (\Error $e) {
http_response_code(500);
$router->getLogger()->error($e->getMessage());
$router->returnStatusCode(500);
$response = $router->returnStatusCode(500);
}
}
} else {
http_response_code(500);
$response = "Router could not be instantiated.";
}
$context->processVisit();