Skip to content
Snippets Groups Projects
Commit 275fc6bd authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #664012 by Bojhan, Dries: removed unnecessary fieldset.

parent d1c01766
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -76,11 +76,7 @@ function node_type_form($form, &$form_state, $type = NULL) {
// Make the type object available to implementations of hook_form_alter.
$form['#node_type'] = $type;
$form['identity'] = array(
'#type' => 'fieldset',
'#title' => t('Identification'),
);
$form['identity']['name'] = array(
$form['name'] = array(
'#title' => t('Name'),
'#type' => 'textfield',
'#default_value' => $type->name,
......@@ -104,7 +100,7 @@ function node_type_form($form, &$form_state, $type = NULL) {
),
),
);
$form['identity']['type'] = array(
$form['type'] = array(
'#title' => t('Machine name'),
'#type' => 'textfield',
'#default_value' => $type->type,
......@@ -117,13 +113,13 @@ function node_type_form($form, &$form_state, $type = NULL) {
);
}
else {
$form['identity']['type'] = array(
$form['type'] = array(
'#type' => 'value',
'#value' => $type->type,
);
}
$form['identity']['description'] = array(
$form['description'] = array(
'#title' => t('Description'),
'#type' => 'textarea',
'#default_value' => $type->description,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment