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/insert.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'admin/page/insert.php') diff --git a/admin/page/insert.php b/admin/page/insert.php index c1d9e5d..915fee5 100644 --- a/admin/page/insert.php +++ b/admin/page/insert.php @@ -35,9 +35,8 @@ if(HTTP::issetPOST('insert')) { if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) { try { - if($PageRepository->insert($Page)) { - HTTP::redirect(Application::getAdminURL('page/')); - } + $PageRepository->insert($Page); + HTTP::redirect(Application::getAdminURL('page/')); } catch(PDOException $Exception) { $messages[] = $Exception->getMessage(); } -- cgit v1.2.3