Same name and namespace in other branches
  1. 5.x modules/comment/comment.module \_comment_load()
  2. 6.x modules/comment/comment.module \_comment_load()

Load the entire comment by cid.

3 calls to _comment_load()
comment_admin_overview_submit in modules/comment.module
Execute the chosen 'Update option' on the selected comments, such as publishing, unpublishing or deleting.
comment_multiple_delete_confirm in modules/comment.module
List the selected comments and verify that the admin really wants to delete them.
comment_multiple_delete_confirm_submit in modules/comment.module
Perform the actual comment deletion.

File

modules/comment.module, line 1103
Enables users to comment on published content.

Code

function _comment_load($cid) {
  return db_fetch_object(db_query('SELECT * FROM {comments} WHERE cid = %d', $cid));
}