diff options
Diffstat (limited to 'admin/post')
-rw-r--r-- | admin/post/delete.php | 2 | ||||
-rw-r--r-- | admin/post/index.php | 2 | ||||
-rw-r--r-- | admin/post/update.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/admin/post/delete.php b/admin/post/delete.php index 82e71da..f271364 100644 --- a/admin/post/delete.php +++ b/admin/post/delete.php @@ -66,7 +66,7 @@ try { # CATCH: Post\Exception #=============================================================================== catch(Post\Exception $Exception) { - Application::exit(404); + Application::error404(); } ?> diff --git a/admin/post/index.php b/admin/post/index.php index bf7afdf..ad735cd 100644 --- a/admin/post/index.php +++ b/admin/post/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/post/update.php b/admin/post/update.php index 65b9045..37dccfe 100644 --- a/admin/post/update.php +++ b/admin/post/update.php @@ -91,6 +91,6 @@ try { # CATCH: Post\Exception #=============================================================================== catch(Post\Exception $Exception) { - Application::exit(404); + Application::error404(); } ?>
\ No newline at end of file |