comment_delete

Versions
mediamosa-21
comment_delete($cid)

Delete a comment and all its replies.

Parameters

$cid The comment to delete.

Code

modules/comment/comment.module, line 1508

<?php
function comment_delete($cid) {
  comment_delete_multiple(array($cid));
}
?>