aboutsummaryrefslogtreecommitdiffstats
path: root/admin/post/delete.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/post/delete.php')
-rw-r--r--admin/post/delete.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/admin/post/delete.php b/admin/post/delete.php
index 3fb4c84..501cae4 100644
--- a/admin/post/delete.php
+++ b/admin/post/delete.php
@@ -28,9 +28,8 @@ if(!$Post = $PostRepository->find(HTTP::GET('id'))) {
if(HTTP::issetPOST('delete')) {
if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) {
try {
- if($PostRepository->delete($Post)) {
- HTTP::redirect(Application::getAdminURL('post/'));
- }
+ $PostRepository->delete($Post);
+ HTTP::redirect(Application::getAdminURL('post/'));
} catch(PDOException $Exception) {
$messages[] = $Exception->getMessage();
}