diff options
Diffstat (limited to 'phpBB/includes/cron/task')
-rw-r--r-- | phpBB/includes/cron/task/core/prune_all_forums.php | 5 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/prune_forum.php | 5 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/queue.php | 5 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/tidy_cache.php | 5 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/tidy_database.php | 5 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/tidy_search.php | 5 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/tidy_sessions.php | 5 | ||||
-rw-r--r-- | phpBB/includes/cron/task/core/tidy_warnings.php | 5 |
8 files changed, 0 insertions, 40 deletions
diff --git a/phpBB/includes/cron/task/core/prune_all_forums.php b/phpBB/includes/cron/task/core/prune_all_forums.php index de7ea557b0..b218aac6c5 100644 --- a/phpBB/includes/cron/task/core/prune_all_forums.php +++ b/phpBB/includes/cron/task/core/prune_all_forums.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Prune all forums cron task. * diff --git a/phpBB/includes/cron/task/core/prune_forum.php b/phpBB/includes/cron/task/core/prune_forum.php index 7728932d7e..090a90c212 100644 --- a/phpBB/includes/cron/task/core/prune_forum.php +++ b/phpBB/includes/cron/task/core/prune_forum.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Prune one forum cron task. * diff --git a/phpBB/includes/cron/task/core/queue.php b/phpBB/includes/cron/task/core/queue.php index dffaf5aed4..d32e133973 100644 --- a/phpBB/includes/cron/task/core/queue.php +++ b/phpBB/includes/cron/task/core/queue.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Queue cron task. Sends email and jabber messages queued by other scripts. * diff --git a/phpBB/includes/cron/task/core/tidy_cache.php b/phpBB/includes/cron/task/core/tidy_cache.php index 72843ba680..69038a8a5a 100644 --- a/phpBB/includes/cron/task/core/tidy_cache.php +++ b/phpBB/includes/cron/task/core/tidy_cache.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Tidy cache cron task. * diff --git a/phpBB/includes/cron/task/core/tidy_database.php b/phpBB/includes/cron/task/core/tidy_database.php index 6724ec092e..3ae8c42273 100644 --- a/phpBB/includes/cron/task/core/tidy_database.php +++ b/phpBB/includes/cron/task/core/tidy_database.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Tidy database cron task. * diff --git a/phpBB/includes/cron/task/core/tidy_search.php b/phpBB/includes/cron/task/core/tidy_search.php index e821310c9f..e21d48c13a 100644 --- a/phpBB/includes/cron/task/core/tidy_search.php +++ b/phpBB/includes/cron/task/core/tidy_search.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Tidy search cron task. * diff --git a/phpBB/includes/cron/task/core/tidy_sessions.php b/phpBB/includes/cron/task/core/tidy_sessions.php index ecf0be3978..ea6aa70699 100644 --- a/phpBB/includes/cron/task/core/tidy_sessions.php +++ b/phpBB/includes/cron/task/core/tidy_sessions.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Tidy sessions cron task. * diff --git a/phpBB/includes/cron/task/core/tidy_warnings.php b/phpBB/includes/cron/task/core/tidy_warnings.php index 6ef6a17fab..257c116b5e 100644 --- a/phpBB/includes/cron/task/core/tidy_warnings.php +++ b/phpBB/includes/cron/task/core/tidy_warnings.php @@ -16,11 +16,6 @@ if (!defined('IN_PHPBB')) exit; } -if (!class_exists('cron_task_base')) -{ - include($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx); -} - /** * Tidy warnings cron task. * |