Index: modules/forum.module =================================================================== RCS file: /cvs/drupal/drupal/modules/forum.module,v retrieving revision 1.217 diff -u -r1.217 forum.module --- modules/forum.module 24 Nov 2004 22:56:21 -0000 1.217 +++ modules/forum.module 28 Nov 2004 00:47:44 -0000 @@ -279,6 +279,8 @@ * Implementation of hook_form(). */ function forum_form(&$node) { + $output = form_textfield(t('Subject'), 'title', $node->title, 60, 128, NULL, NULL, TRUE); + if (!$node->nid) { // new topic $node->taxonomy[] = arg(3); @@ -287,7 +289,7 @@ $node->taxonomy = array($node->tid); } - $output = implode('', taxonomy_node_form('forum', $node)); + $output .= implode('', taxonomy_node_form('forum', $node)); if ($node->nid) { // if editing, give option to leave shadows Index: modules/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node.module,v retrieving revision 1.425 diff -u -r1.425 node.module --- modules/node.module 23 Nov 2004 23:11:58 -0000 1.425 +++ modules/node.module 27 Nov 2004 17:19:22 -0000 @@ -1194,9 +1194,8 @@ $output .= $extras ? '
'. $extras .'
' : ''; } - // Add the default fields. + // Open the enclosing div. $output .= '
'; - $output .= form_textfield(t('Title'), 'title', $edit->title, 60, 128, NULL, NULL, TRUE); // Add the node-type-specific fields. $output .= $form; Index: modules/page.module =================================================================== RCS file: /cvs/drupal/drupal/modules/page.module,v retrieving revision 1.128 diff -u -r1.128 page.module --- modules/page.module 23 Oct 2004 17:18:23 -0000 1.128 +++ modules/page.module 27 Nov 2004 17:15:03 -0000 @@ -109,6 +109,8 @@ * Implementation of hook_form(). */ function page_form(&$node) { + $output = form_textfield(t('Title'), 'title', $node->title, 60, 128, NULL, NULL, TRUE); + if (function_exists('taxonomy_node_form')) { $output .= implode('', taxonomy_node_form('page', $node)); } Index: modules/story.module =================================================================== RCS file: /cvs/drupal/drupal/modules/story.module,v retrieving revision 1.161 diff -u -r1.161 story.module --- modules/story.module 23 Nov 2004 22:20:41 -0000 1.161 +++ modules/story.module 27 Nov 2004 17:13:46 -0000 @@ -116,7 +116,7 @@ * Implementation of hook_form(). */ function story_form(&$node) { - $output = ''; + $output = form_textfield(t('Title'), 'title', $node->title, 60, 128, NULL, NULL, TRUE); if (function_exists('taxonomy_node_form')) { $output .= implode('', taxonomy_node_form('story', $node)); Index: modules/blog.module =================================================================== RCS file: /cvs/drupal/drupal/modules/blog.module,v retrieving revision 1.206 diff -u -r1.206 blog.module --- modules/blog.module 24 Nov 2004 22:56:21 -0000 1.206 +++ modules/blog.module 28 Nov 2004 00:46:13 -0000 @@ -210,6 +210,8 @@ global $nid; $iid = $_GET['iid']; + $output = form_textfield(t('Title'), 'title', $node->title, 60, 128, NULL, NULL, TRUE); + if (empty($node->body)) { /* ** If the user clicked a "blog it" link, we load the data from the Index: modules/book.module =================================================================== RCS file: /cvs/drupal/drupal/modules/book.module,v retrieving revision 1.272 diff -u -r1.272 book.module --- modules/book.module 24 Nov 2004 22:56:21 -0000 1.272 +++ modules/book.module 27 Nov 2004 17:14:37 -0000 @@ -225,7 +225,9 @@ $op = $_POST['op']; - $output = form_select(t('Parent'), 'parent', ($node->parent ? $node->parent : arg(4)), book_toc($node->nid), t('The parent that this page belongs in. Note that pages whose parent is <top-level> are regarded as independent, top-level books.')); + $output = form_textfield(t('Title'), 'title', $node->title, 60, 128, NULL, NULL, TRUE); + + $output .= form_select(t('Parent'), 'parent', ($node->parent ? $node->parent : arg(4)), book_toc($node->nid), t('The parent that this page belongs in. Note that pages whose parent is <top-level> are regarded as independent, top-level books.')); if (function_exists('taxonomy_node_form')) { $output .= implode('', taxonomy_node_form('book', $node));