diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-10 21:39:03 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-10 21:39:03 +0000 |
commit | 7ed3cf3b133aa980f110ebf6585d69448e2cb6ef (patch) | |
tree | 339a7d195ff16193147088110d96493d4c99f34b /modules/user/user.module | |
parent | 7bcd22f1c85cc20c3a0d959a216409ee0d8b66ad (diff) | |
download | brdo-7ed3cf3b133aa980f110ebf6585d69448e2cb6ef.tar.gz brdo-7ed3cf3b133aa980f110ebf6585d69448e2cb6ef.tar.bz2 |
#569238 by sun, swentel, catch: Changed Make check_markup() not cache by default.
Diffstat (limited to 'modules/user/user.module')
-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 = ''; |