function linkchecker_link_load in Link checker 6.2
Same name and namespace in other branches
- 5.2 linkchecker.module \linkchecker_link_load()
- 7 linkchecker.module \linkchecker_link_load()
Load link as array.
File
- ./
linkchecker.module, line 1896 - This module periodically check links in given node types, blocks, cck fields, etc.
Code
function linkchecker_link_load($lid) {
return db_fetch_array(db_query("SELECT * FROM {linkchecker_links} WHERE lid = %d", $lid));
}