function _linkchecker_scan_comment_links in Link checker 5.2
Scan specified comment for links. Helper function for job_queue scans.
Parameters
$cid: The comment id to scan.
1 string reference to '_linkchecker_scan_comment_links'
- _linkchecker_add_comment_links in ./
linkchecker.module - Add comment links to database.
File
- ./
linkchecker.module, line 1326 - This module periodically check links in given node types, blocks, cck fields, etc.
Code
function _linkchecker_scan_comment_links($cid) {
$comment = _linkchecker_comment_load($cid);
_linkchecker_add_comment_links($comment);
}