aboutsummaryrefslogtreecommitdiffstats
path: root/admin/page
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-08-05 17:08:55 +0200
committerThomas Lange <code@nerdmind.de>2021-08-05 17:17:31 +0200
commit5b2770aa34f0fb329492311080c101c03c493fb3 (patch)
treee1a36f3109a76b8b38414c4b2c81f3edbece2b31 /admin/page
parentd677315331796d52bd1bcf5908964a53958469d6 (diff)
downloadblog-5b2770aa34f0fb329492311080c101c03c493fb3.tar.gz
blog-5b2770aa34f0fb329492311080c101c03c493fb3.tar.xz
blog-5b2770aa34f0fb329492311080c101c03c493fb3.zip
Simplify the insert/update HTTP-POST params check
Simplify the HTTP-POST parameter presence check in the administration controllers for creating and modifying entities. Since we already use fallback values for each attribute, we don't need a full param check.
Diffstat (limited to 'admin/page')
-rw-r--r--admin/page/insert.php2
-rw-r--r--admin/page/update.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/admin/page/insert.php b/admin/page/insert.php
index 76e9fb4..c1d9e5d 100644
--- a/admin/page/insert.php
+++ b/admin/page/insert.php
@@ -24,7 +24,7 @@ $Page = new ORM\Entities\Page;
#===============================================================================
# Check for insert request
#===============================================================================
-if(HTTP::issetPOST('user', 'slug', 'name', 'body', 'argv', 'time_insert', 'time_update', 'insert')) {
+if(HTTP::issetPOST('insert')) {
$Page->set('user', HTTP::POST('user'));
$Page->set('slug', HTTP::POST('slug') ?: generateSlug(HTTP::POST('name')));
$Page->set('name', HTTP::POST('name') ?: NULL);
diff --git a/admin/page/update.php b/admin/page/update.php
index 2ea5156..5ec5f73 100644
--- a/admin/page/update.php
+++ b/admin/page/update.php
@@ -26,7 +26,7 @@ if(!$Page = $PageRepository->find(HTTP::GET('id'))) {
#===============================================================================
# Check for update request
#===============================================================================
-if(HTTP::issetPOST('user', 'slug', 'name', 'body', 'argv', 'time_insert', 'time_update', 'update')) {
+if(HTTP::issetPOST('update')) {
$Page->set('user', HTTP::POST('user'));
$Page->set('slug', HTTP::POST('slug') ?: generateSlug(HTTP::POST('name')));
$Page->set('name', HTTP::POST('name') ?: NULL);