diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-13 05:17:15 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-13 05:17:15 +0000 |
commit | a0ec577e5b3a55ddf0e4707c953f9fdbbd23b792 (patch) | |
tree | deda28a165817e01ca54ea828679a22dbc0d59b5 | |
parent | 9058a8984d76ae238bdc3a45a1c41dfa9012445c (diff) | |
download | brdo-a0ec577e5b3a55ddf0e4707c953f9fdbbd23b792.tar.gz brdo-a0ec577e5b3a55ddf0e4707c953f9fdbbd23b792.tar.bz2 |
#569318 by Benjamin Melançon: Fixed hook_comment_load() never gets called.
-rw-r--r-- | modules/comment/comment.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 04e8fe200..c18e4ed44 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1511,6 +1511,7 @@ class CommentController extends DrupalDefaultEntityController { $comment->node_type = 'comment_node_' . $comment->node_type; $comments[$key] = $comment; } + parent::attachLoad($comments); } } |