diff options
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index e36eadf2db..09971fc92e 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1497,17 +1497,6 @@ function page_footer() $template->display('body'); - // Handle email/cron queue. - if (time() - $config['queue_interval'] >= $config['last_queue_run'] && !defined('IN_ADMIN')) - { - if (file_exists($phpbb_root_path . 'cache/queue.' . $phpEx)) - { - include_once($phpbb_root_path . 'includes/functions_messenger.'.$phpEx); - $queue = new queue(); - $queue->process(); - } - } - // Unload cache, must be done before the DB connection if closed if (!empty($cache)) { |