EditTag: hide option for assigning parent

This commit is contained in:
Aaron van Geffen 2023-03-11 17:23:44 +01:00
parent 4d47696dcd
commit 4033a8813c
1 changed files with 1 additions and 4 deletions

View File

@ -65,10 +65,6 @@ class EditTag extends HTMLController
'request_url' => BASEURL . '/edittag/?' . ($id_tag ? 'id=' . $id_tag : 'add'),
'content_below' => $after_form,
'fields' => [
'id_parent' => [
'type' => 'numeric',
'label' => 'Parent tag ID',
],
'id_asset_thumb' => [
'type' => 'numeric',
'label' => 'Thumbnail asset ID',
@ -118,6 +114,7 @@ class EditTag extends HTMLController
return $formview->adopt(new Alert('Some data missing', 'Please fill out the following fields: ' . implode(', ', $form->getMissing()), 'danger'));
$data = $form->getData();
$data['id_parent'] = 0;
// Quick stripping.
$data['slug'] = strtr($data['slug'], [' ' => '-', '--' => '-', '&' => 'and', '=>' => '', "'" => "", ":"=> "", '/' => '-', '\\' => '-']);