aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-03-31 20:27:46 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-03-31 20:27:46 +0200
commitbca600877cbd92246949366238d365bbc3039d5a (patch)
treeb46ae5b110afde56850e925af5de1e9acbc015dd /phpBB/common.php
parent776160a7e35a1f82325b7acf573906310791c573 (diff)
downloadforums-bca600877cbd92246949366238d365bbc3039d5a.tar
forums-bca600877cbd92246949366238d365bbc3039d5a.tar.gz
forums-bca600877cbd92246949366238d365bbc3039d5a.tar.bz2
forums-bca600877cbd92246949366238d365bbc3039d5a.tar.xz
forums-bca600877cbd92246949366238d365bbc3039d5a.zip
[feature/dic] Move cron manager into DIC
PHPBB3-10739
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 591969df74..0446b5c15e 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -142,5 +142,5 @@ foreach ($cache->obtain_hooks() as $hook)
if (!$config['use_system_cron'])
{
- $cron = new phpbb_cron_manager(new phpbb_cron_task_provider($phpbb_extension_manager), $cache->get_driver());
+ $cron = $container->get('cron.manager');
}