summaryrefslogtreecommitdiff
path: root/modules/comment.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment.module')
-rw-r--r--modules/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module
index b90e05cff..1c2a97eca 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -950,7 +950,7 @@ function _comment_delete_thread($comment) {
// Delete the comment's replies:
$result = db_query("SELECT cid, subject FROM {comments} WHERE pid = %d", $comment->cid);
while ($comment = db_fetch_object($result)) {
- comment_delete_thread($comment);
+ _comment_delete_thread($comment);
}
}