summaryrefslogtreecommitdiff
path: root/cron.php
diff options
context:
space:
mode:
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/cron.php b/cron.php
index 063b1feef..553830d88 100644
--- a/cron.php
+++ b/cron.php
@@ -6,7 +6,12 @@
* Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
*/
-include_once './includes/bootstrap.inc';
+/**
+ * Root directory of Drupal installation.
+ */
+define('DRUPAL_ROOT', dirname(realpath(__FILE__)));
+
+include_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
if (isset($_GET['cron_key']) && variable_get('cron_key', 'drupal') == $_GET['cron_key']) {
drupal_cron_run();