| 5 comment.module | comment_delete($cid = NULL) |
| 6 comment.admin.inc | comment_delete($cid = NULL) |
| 7 comment.module | comment_delete($cid) |
| 8 comment.module | comment_delete($cid) |
Delete a comment and all its replies.
Parameters
$cid: The comment to delete.
2 calls to comment_delete()
5 string references to 'comment_delete'
File
- modules/
comment/ comment.module, line 1593 - Enables users to comment on published content.
Code
function comment_delete($cid) {
comment_delete_multiple(array($cid));
}
Login or register to post comments