diff options
author | Thomas Lange <code@nerdmind.de> | 2021-08-05 18:19:19 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-08-05 18:27:08 +0200 |
commit | a0722c6d149b253a320976a64aad6e57ab1cccd7 (patch) | |
tree | 12529b8ffb17043e956b2afe4cb28359f28eec5b /admin/category/delete.php | |
parent | de51f59ef9a50bce0ef63a883c590d1feeadca5d (diff) | |
download | blog-a0722c6d149b253a320976a64aad6e57ab1cccd7.tar.gz blog-a0722c6d149b253a320976a64aad6e57ab1cccd7.tar.xz blog-a0722c6d149b253a320976a64aad6e57ab1cccd7.zip |
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.
Diffstat (limited to 'admin/category/delete.php')
-rw-r--r-- | admin/category/delete.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/admin/category/delete.php b/admin/category/delete.php index d7b3001..c443c4a 100644 --- a/admin/category/delete.php +++ b/admin/category/delete.php @@ -28,9 +28,8 @@ if(!$Category = $CategoryRepository->find(HTTP::GET('id'))) { if(HTTP::issetPOST('delete')) { if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) { try { - if($CategoryRepository->delete($Category)) { - HTTP::redirect(Application::getAdminURL('category/')); - } + $CategoryRepository->delete($Category); + HTTP::redirect(Application::getAdminURL('category/')); } catch(PDOException $Exception) { $messages[] = $Exception->getMessage(); } |