summaryrefslogtreecommitdiff
path: root/modules/comment/comment.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r--modules/comment/comment.module6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 09d8e3d43..677d1b263 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -139,10 +139,6 @@ function comment_settings() {
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 @@ function comment_admin_edit($id) {
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"));