function _user_delete_comment_load in User Delete 6.2
2 calls to _user_delete_comment_load()
- _user_delete_comment_mass_delete_helper in ./
user_delete.module - comment Mass Update - helper function.
- _user_delete_comment_mass_update_helper in ./
user_delete.module - comment Mass Update - helper function.
File
- ./
user_delete.module, line 942 - Provide account cancellation methods and API to provide the same functionalty as Drupal 7 for cancelling accounts.
Code
function _user_delete_comment_load($cid) {
$comment = db_fetch_object(db_query("SELECT * FROM {comments} WHERE cid = %d", $cid));
return $comment;
}