You are here

function linkchecker_set_time_limit in Link checker 6.2

Backport of drupal_set_time_limit from Drupal 7.

1 call to linkchecker_set_time_limit()
_linkchecker_check_links in ./linkchecker.module
Run link checks.

File

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

Code

function linkchecker_set_time_limit($time_limit) {
  if (function_exists('set_time_limit')) {
    @set_time_limit($time_limit);
  }
}