Index: modules/comment.module =================================================================== RCS file: /cvs/drupal/drupal/modules/comment.module,v retrieving revision 1.214 diff -u -r1.214 comment.module --- modules/comment.module 29 Jan 2004 19:51:39 -0000 1.214 +++ modules/comment.module 31 Jan 2004 15:12:45 -0000 @@ -139,10 +139,6 @@ function comment_user($type, $edit, &$user) { switch ($type) { case "view_public": - if ($user->signature) { - return form_item(t("Signature"), check_output($user->signature)); - } - break; case "view_private": if ($user->signature) { return form_item(t("Signature"), check_output($user->signature)); @@ -909,7 +905,7 @@ if ($comment) { $form .= form_item(t("Author"), format_name($comment)); $form .= form_textfield(t("Subject"), "subject", $comment->subject, 70, 128); - $form .= form_textarea(t("Comment"), "comment", $comment->comment, 70, 15); + $form .= form_textarea(t("Comment"), "comment", $comment->comment, 70, 15, filter_tips_short()); $form .= form_radios(t("Status"), "status", $comment->status, array("published", "not published")); $form .= form_hidden("cid", $id); $form .= form_submit(t("Submit")); Index: modules/forum.module =================================================================== RCS file: /cvs/drupal/drupal/modules/forum.module,v retrieving revision 1.160 diff -u -r1.160 forum.module --- modules/forum.module 29 Jan 2004 22:00:31 -0000 1.160 +++ modules/forum.module 31 Jan 2004 15:12:48 -0000 @@ -218,7 +218,7 @@ $output .= form_checkbox(t("Leave shadow copy"), "shadow", 1, $node->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, 10, filter_tips_short()); return $output; } Index: modules/page.module =================================================================== RCS file: /cvs/drupal/drupal/modules/page.module,v retrieving revision 1.108 diff -u -r1.108 page.module --- modules/page.module 27 Jan 2004 18:47:07 -0000 1.108 +++ modules/page.module 31 Jan 2004 15:12:48 -0000 @@ -127,7 +127,7 @@ $output .= implode("", taxonomy_node_form("page", $node)); } - $output .= form_textarea(t("Body"), "body", $node->body, 60, 20); + $output .= form_textarea(t("Body"), "body", $node->body, 60, 20, filter_tips_short()); $output .= form_textfield(t("Link name"), "link", $node->link, 60, 64, t("To make the page show up in the navigation links, enter the name of the link, otherwise leave blank.")); $output .= form_textfield(t("Link description"), "description", $node->description, 60, 64, t("The description displayed when hovering over the page's link. Leave blank when you don't want a description.")); $output .= form_radios(t("Type"), "format", $node->format, array(0 => "HTML", 1 => "PHP"));