diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-03 13:59:59 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-02-03 16:15:52 +0100 |
commit | bcd7920b817b60df9b1b266118419e44c39900db (patch) | |
tree | cf0b4515a6f99298109eb869b2d592a0e39bb465 /index.php | |
parent | 5816cbcad0e9c4cda4dc10b730a5a1ea2c4e419a (diff) |
generalize authentication handling
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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 */ |