#184694 by andremolnar: (regression) allow themes to override *_node_form forms by node type, not just generically

6.x
Gábor Hojtsy 2007-10-22 10:37:14 +00:00
parent c015aa3da3
commit 9db0fca72f
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ function node_form(&$form_state, $node) {
);
}
$form['#validate'][] = 'node_form_validate';
$form['#theme'] = 'node_form';
$form['#theme'] = array($node->type .'_node_form', 'node_form');
return $form;
}