diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -307,8 +307,10 @@ register_shutdown_function("check_for_fatal"); */ try { require_once BASEPATH.'core/CodeIgniter.php'; +} catch (\exceptions\NotAuthenticatedException $e) { + redirect("user/login"); } catch (\exceptions\UserInputException $e) { - show_error(nl2br(htmlspecialchars($e->__toString())), 400); + show_error(nl2br(htmlspecialchars($e->__toString())), $e->get_http_error_code()); } /* End of file index.php */ |