11 lines
206 B
PHP
11 lines
206 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
* Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
|
||
|
|
*/
|
||
|
|
|
||
|
|
include_once './includes/bootstrap.inc';
|
||
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
||
|
|
drupal_cron_run();
|