2001-03-10 11:07:52 +00:00
|
|
|
<?php
|
2004-08-07 21:00:43 +00:00
|
|
|
// $Id$
|
|
|
|
|
2004-08-21 06:42:38 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2004-09-09 05:51:08 +00:00
|
|
|
* Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
|
2004-08-21 06:42:38 +00:00
|
|
|
*/
|
|
|
|
|
2005-09-08 19:19:01 +00:00
|
|
|
include_once './includes/bootstrap.inc';
|
2005-07-23 05:57:27 +00:00
|
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
2006-08-09 07:42:55 +00:00
|
|
|
drupal_cron_run();
|