diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-27 22:10:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-27 22:10:47 +0000 |
commit | 02c622dea123ff89ca45d19bd4ee402f8cf74a00 (patch) | |
tree | 7999014c84956db447887ba4fbfe8aac5763b3fc /modules/comment.module | |
parent | 01b5aa1736bddc4b64590da57844d1061f4130eb (diff) | |
download | brdo-02c622dea123ff89ca45d19bd4ee402f8cf74a00.tar.gz brdo-02c622dea123ff89ca45d19bd4ee402f8cf74a00.tar.bz2 |
- Patch 4332 by Goba: eliminate compose tips module.
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment.module b/modules/comment.module index 4e78e7677..9c937dde0 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -150,7 +150,7 @@ function comment_user($type, $edit, &$user) { break; case "edit_form": // when user tries to edit his own data - return form_textarea(t("Signature"), "signature", $user->signature, 70, 3, t("Your signature will be publicly displayed at the end of your comments.") ."<br />". form_allowed_tags_text()); + return form_textarea(t("Signature"), "signature", $user->signature, 70, 3, t("Your signature will be publicly displayed at the end of your comments.") ."<br />". filter_tips_short()); case "edit_validate": // validate user data editing return array("signature" => $edit["signature"]); @@ -1259,7 +1259,7 @@ function theme_comment_form($edit, $title) { $form .= form_textfield(t("Subject"), "subject", $edit["subject"], 50, 64); // comment field: - $form .= form_textarea(t("Comment"), "comment", $edit["comment"] ? $edit["comment"] : $user->signature, 70, 10, form_allowed_tags_text()); + $form .= form_textarea(t("Comment"), "comment", $edit["comment"] ? $edit["comment"] : $user->signature, 70, 10, filter_tips_short()); // preview button: $form .= form_hidden("cid", $edit["cid"]); |