You are here

function drupal_disable_standard_cron in Elysia Cron 6.2

1 call to drupal_disable_standard_cron()
elysia_cron_boot in ./elysia_cron.module

File

./elysia_drupalconv.php, line 136

Code

function drupal_disable_standard_cron() {
  global $conf;

  // I need to set cron_semaphore always to false. That way standard drupal cron is always bypassed
  $conf['cron_semaphore'] = false;
}