forked from Public/pics
EditTag: hide option for assigning parent
This commit is contained in:
parent
4d47696dcd
commit
4033a8813c
@ -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', '=>' => '', "'" => "", ":"=> "", '/' => '-', '\\' => '-']);
|
||||
|
Loading…
Reference in New Issue
Block a user