From be49d1f366da155737d05a17f73cf1c3d246c67e Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sat, 19 Jun 2021 01:37:36 +0200 Subject: Remove ID form field (and rearrange other fields) This commit removes the ID form field, enlarges the title form field and rearranges the other form fields in the grid layout. --- admin/user/insert.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'admin/user/insert.php') diff --git a/admin/user/insert.php b/admin/user/insert.php index 9a84fa9..acb49ad 100644 --- a/admin/user/insert.php +++ b/admin/user/insert.php @@ -12,8 +12,7 @@ require '../../core/application.php'; $Attribute = new User\Attribute(); -if(HTTP::issetPOST('id', 'slug', 'username', 'password', 'fullname', 'mailaddr', 'body', 'argv', 'time_insert', 'time_update', 'insert')) { - $Attribute->set('id', HTTP::POST('id') ? HTTP::POST('id') : FALSE); +if(HTTP::issetPOST('slug', 'username', 'password', 'fullname', 'mailaddr', 'body', 'argv', 'time_insert', 'time_update', 'insert')) { $Attribute->set('slug', HTTP::POST('slug') ? HTTP::POST('slug') : generateSlug(HTTP::POST('username'))); $Attribute->set('username', HTTP::POST('username') ? HTTP::POST('username') : NULL); $Attribute->set('password', HTTP::POST('password') ? password_hash(HTTP::POST('password'), PASSWORD_BCRYPT, ['cost' => 10]) : FALSE); -- cgit v1.2.3