diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-11 05:11:57 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-11 05:15:49 +0200 |
commit | 7a1b8f471ca133b6ca99cd4e440e6614a7c18537 (patch) | |
tree | 79e9e8fbd20db4db18e531eaa792bf20ed539ae9 /admin/user | |
parent | 6feb5fe0d45196af4a9b2b058cefdd15f6007522 (diff) | |
download | blog-7a1b8f471ca133b6ca99cd4e440e6614a7c18537.tar.gz blog-7a1b8f471ca133b6ca99cd4e440e6614a7c18537.tar.xz blog-7a1b8f471ca133b6ca99cd4e440e6614a7c18537.zip |
Methods "error403" and "error404" has been added to the "Application" class; several files has been changed.
Diffstat (limited to 'admin/user')
-rw-r--r-- | admin/user/delete.php | 2 | ||||
-rw-r--r-- | admin/user/index.php | 2 | ||||
-rw-r--r-- | admin/user/update.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/admin/user/delete.php b/admin/user/delete.php index ed8f925..5a1400a 100644 --- a/admin/user/delete.php +++ b/admin/user/delete.php @@ -66,7 +66,7 @@ try { # CATCH: User\Exception #=============================================================================== catch(User\Exception $Exception) { - Application::exit(404); + Application::error404(); } ?> diff --git a/admin/user/index.php b/admin/user/index.php index 3dca93a..5f43eee 100644 --- a/admin/user/index.php +++ b/admin/user/index.php @@ -19,7 +19,7 @@ $currentSite = HTTP::GET('site') ?? 1; $currentSite = abs(intval($currentSite)); if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { - Application::exit(404); + Application::error404(); } #=============================================================================== diff --git a/admin/user/update.php b/admin/user/update.php index cab582e..07965cd 100644 --- a/admin/user/update.php +++ b/admin/user/update.php @@ -84,6 +84,6 @@ try { # CATCH: User\Exception #=============================================================================== catch(User\Exception $Exception) { - Application::exit(404); + Application::error404(); } ?>
\ No newline at end of file |