From a0722c6d149b253a320976a64aad6e57ab1cccd7 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 5 Aug 2021 18:19:19 +0200 Subject: Don't check return value of insert/delete methods Don't check the return value of the Repository's "insert" and "delete" methods in the administration controllers for creating and modifying entities since a PDOException is thrown if an error occurs. --- admin/page/delete.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'admin/page/delete.php') diff --git a/admin/page/delete.php b/admin/page/delete.php index 035dbee..8542187 100644 --- a/admin/page/delete.php +++ b/admin/page/delete.php @@ -28,9 +28,8 @@ if(!$Page = $PageRepository->find(HTTP::GET('id'))) { if(HTTP::issetPOST('delete')) { if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) { try { - if($PageRepository->delete($Page)) { - HTTP::redirect(Application::getAdminURL('page/')); - } + $PageRepository->delete($Page); + HTTP::redirect(Application::getAdminURL('page/')); } catch(PDOException $Exception) { $messages[] = $Exception->getMessage(); } -- cgit v1.2.3