1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

added email queue + small changes (do not hit me for the mysql_basic change :D)

git-svn-id: file:///svn/phpbb/trunk@4067 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2003-05-29 14:29:59 +00:00
parent 65b38b317f
commit d4cbbb1055
4 changed files with 237 additions and 42 deletions

View File

@@ -33,7 +33,6 @@ $user->start();
$user->setup();
$auth->acl($user->data);
// Handle marking posts
if ($mark_read == 'forums')
{
@@ -48,6 +47,15 @@ if ($mark_read == 'forums')
trigger_error($message);
}
// Handle queue - to be placed into common.php ? I think to only check and process at the index is enough. ;)
// Do not initiate the object, we do not need to do this...
if (file_exists($phpbb_root_path . 'cache/queue.' . $phpEx))
{
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
$queue = new Queue();
$queue->process();
}
// Set some stats, get posts count from forums data if we... hum... retrieve all forums data
$total_posts = $config['num_posts'];
$total_topics = $config['num_topics'];