aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cron/cron_task_base.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/cron/cron_task_base.php')
-rw-r--r--phpBB/includes/cron/cron_task_base.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/cron/cron_task_base.php b/phpBB/includes/cron/cron_task_base.php
index 3561f4e14f..bdd96ec8f5 100644
--- a/phpBB/includes/cron/cron_task_base.php
+++ b/phpBB/includes/cron/cron_task_base.php
@@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
exit;
}
+include_once($phpbb_root_path . 'includes/cron/cron_task.' . $phpEx);
+
/**
* Cron task base class. Provides sensible defaults for cron tasks
* and partially implements cron task interface, making writing cron tasks easier.