diff --git a/core/modules/comment/comment.api.php b/core/modules/comment/comment.api.php index 5401556..b381b6c 100644 --- a/core/modules/comment/comment.api.php +++ b/core/modules/comment/comment.api.php @@ -140,6 +140,7 @@ function hook_comment_unpublish($comment) { * * @see hook_comment_delete() * @see comment_delete_multiple() + * @see entity_delete_multiple() */ function hook_comment_predelete($comment) { // Delete a record associated with the comment in a custom table. @@ -160,6 +161,7 @@ function hook_comment_predelete($comment) { * * @see hook_comment_predelete() * @see comment_delete_multiple() + * @see entity_delete_multiple() */ function hook_comment_delete($comment) { drupal_set_message(t('Comment: @subject has been deleted', array('@subject' => $comment->subject)));