You are here

function _linkchecker_delete_box_links in Link checker 6.2

Same name and namespace in other branches
  1. 5.2 linkchecker.module \_linkchecker_delete_box_links()

Remove all box references to links in the linkchecker_boxes table.

1 call to _linkchecker_delete_box_links()
linkchecker_block_box_delete_form_submit in ./linkchecker.module
Custom submit handler for block delete page.

File

./linkchecker.module, line 1231
This module periodically check links in given node types, blocks, cck fields, etc.

Code

function _linkchecker_delete_box_links($bid) {
  return db_query("DELETE FROM {linkchecker_boxes} WHERE bid = %d", $bid);
}