diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-07-02 15:07:37 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-07-02 15:07:37 +0000 |
commit | 8f66b459bff921ad2f79a7858d8eb5294087b58c (patch) | |
tree | 772386eb46ae3a4bdb522bb9777cf9700b6d1e39 | |
parent | 0142292c718eaf31e73c3ee0cd9ef427bc18de16 (diff) | |
download | brdo-8f66b459bff921ad2f79a7858d8eb5294087b58c.tar.gz brdo-8f66b459bff921ad2f79a7858d8eb5294087b58c.tar.bz2 |
#504678 follow-up by catch: Fix notice in PHP 5.3.
-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 29fb8c492..5a5b70f5e 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2461,7 +2461,7 @@ function user_forms() { /** * Implement hook_comment_view(). */ -function user_comment_view(&$comment) { +function user_comment_view($comment) { if (variable_get('user_signatures', 0) && !empty($comment->signature)) { $comment->signature = check_markup($comment->signature, $comment->format); } |