diff options
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 26064f886..1cf567bb1 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2852,7 +2852,7 @@ function user_forms() { */ function user_comment_view($comment) { if (variable_get('user_signatures', 0) && !empty($comment->signature)) { - $comment->signature = check_markup($comment->signature, $comment->format); + $comment->signature = check_markup($comment->signature, $comment->format, '', TRUE); } else { $comment->signature = ''; |