aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-10-12 23:34:09 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-10-12 23:34:09 +0000
commitbb9cd0f2ba5406249327495786a75b16ec788ac4 (patch)
tree6e4eb84f025d0e0d4645692d056614997ce19b8d /phpBB/includes/functions.php
parentfca087f846a001ff310f96171b252fbc64ad76b7 (diff)
downloadforums-bb9cd0f2ba5406249327495786a75b16ec788ac4.tar
forums-bb9cd0f2ba5406249327495786a75b16ec788ac4.tar.gz
forums-bb9cd0f2ba5406249327495786a75b16ec788ac4.tar.bz2
forums-bb9cd0f2ba5406249327495786a75b16ec788ac4.tar.xz
forums-bb9cd0f2ba5406249327495786a75b16ec788ac4.zip
well, seems putting the queue process in the footer doesn't work on "real boards" where people hit stop constantly on their browser :D
git-svn-id: file:///svn/phpbb/trunk@4593 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php11
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))
{