function _linkchecker_comment_load in Link checker 6.2
Same name and namespace in other branches
- 5.2 linkchecker.module \_linkchecker_comment_load()
Load comment as array.
3 calls to _linkchecker_comment_load()
- _linkchecker_batch_comments_import_op in includes/
linkchecker.batch.inc - Batch operation: Scan ony by one comment for links.
- _linkchecker_batch_single_comment_import_op in includes/
linkchecker.batch.inc - _linkchecker_status_handling in ./
linkchecker.module - Status code handling.
File
- ./
linkchecker.module, line 1889 - This module periodically check links in given node types, blocks, cck fields, etc.
Code
function _linkchecker_comment_load($cid) {
return db_fetch_array(db_query('SELECT * FROM {comments} WHERE cid = %d', $cid));
}