? modules/determinelink
? modules/emoticons
? modules/smilies
Index: modules/blog.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blog.module,v
retrieving revision 1.198
diff -u -r1.198 blog.module
--- modules/blog.module	21 Sep 2004 21:30:26 -0000	1.198
+++ modules/blog.module	23 Sep 2004 16:57:52 -0000
@@ -10,7 +10,7 @@
  * Implementation of hook_settings().
  */
 function blog_settings() {
-  $output = form_textarea(t('Explanation or submission guidelines'), 'blog_help', variable_get('blog_help', ''), 70, 4, t("This text is displayed at the top of the blog submission form.  It's useful for helping or instructing your users."));
+  $output = form_textarea(t('Explanation or submission guidelines'), 'blog_help', variable_get('blog_help', ''), 70, 5, t("This text is displayed at the top of the blog submission form.  It's useful for helping or instructing your users."));
   $output .= form_select(t('Minimum number of words in a blog entry'), 'minimum_blog_size', variable_get('minimum_blog_size', 0), drupal_map_assoc(array(0, 10, 25, 50, 75, 100, 125, 150, 175, 200)), t("The minimum number of words a personal blog entry should contain.  This is useful to rule out submissions that do not meet the site's standards, such as short test posts."));
   return $output;
 }
@@ -210,7 +210,7 @@
     $output .= implode('', taxonomy_node_form('blog', $node));
   }
 
-  $output .= form_textarea(t('Body'), 'body', $node->body, 60, 15, '', NULL, TRUE);
+  $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, '', NULL, TRUE);
 
   return $output;
 }
Index: modules/forum.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/forum.module,v
retrieving revision 1.200
diff -u -r1.200 forum.module
--- modules/forum.module	22 Sep 2004 17:46:44 -0000	1.200
+++ modules/forum.module	23 Sep 2004 16:57:18 -0000
@@ -296,7 +296,7 @@
     $output .= form_checkbox(t('Leave shadow copy'), 'shadow', 1, $shadow, t('If you move this topic, you can leave a link in the old forum to the new forum.'));
   }
 
-  $output .= form_textarea(t('Body'), 'body', $node->body, 60, 10, '');
+  $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, '');
 
   return $output;
 }
Index: modules/story.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/story.module,v
retrieving revision 1.157
diff -u -r1.157 story.module
--- modules/story.module	16 Sep 2004 07:17:55 -0000	1.157
+++ modules/story.module	23 Sep 2004 16:57:54 -0000
@@ -122,7 +122,7 @@
     $output .= implode('', taxonomy_node_form('story', $node));
   }
 
-  $output .= form_textarea(t('Body'), 'body', $node->body, 60, 15, '', NULL, TRUE);
+  $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, '', NULL, TRUE);
 
   return $output;
 }
