aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2010-04-18 13:48:32 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-02-12 22:05:49 -0500
commit763dc86c166ab850007fea8da4622e4cd1eeafc8 (patch)
tree27db57c6dd9b319b0355e379e46a161f20f44939 /phpBB/common.php
parentea3b98ab493c12442f7da1b52798294bcb086457 (diff)
downloadforums-763dc86c166ab850007fea8da4622e4cd1eeafc8.tar
forums-763dc86c166ab850007fea8da4622e4cd1eeafc8.tar.gz
forums-763dc86c166ab850007fea8da4622e4cd1eeafc8.tar.bz2
forums-763dc86c166ab850007fea8da4622e4cd1eeafc8.tar.xz
forums-763dc86c166ab850007fea8da4622e4cd1eeafc8.zip
[feature/system-cron] Fixes to make cron actually run.
PHPBB3-9596
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index e2300f0bd5..cbd8399206 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -243,5 +243,5 @@ foreach ($cache->obtain_hooks() as $hook)
if (!$config['use_system_cron'])
{
include($phpbb_root_path . 'includes/cron/cron_manager.' . $phpEx);
- $cron = new cron();
+ $cron = new cron_manager();
}