diff options
author | Nils Adermann <naderman@naderman.de> | 2011-01-13 00:07:40 +0100 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-12 22:05:54 -0500 |
commit | 7a8233020bdeb872dad6057b7799c43c1543aba4 (patch) | |
tree | fb9027ef217adf0a931e14df3860d24173df11fa /phpBB/common.php | |
parent | 9bc62056b27a54cccc4e626350838113a3ba80db (diff) | |
download | forums-7a8233020bdeb872dad6057b7799c43c1543aba4.tar forums-7a8233020bdeb872dad6057b7799c43c1543aba4.tar.gz forums-7a8233020bdeb872dad6057b7799c43c1543aba4.tar.bz2 forums-7a8233020bdeb872dad6057b7799c43c1543aba4.tar.xz forums-7a8233020bdeb872dad6057b7799c43c1543aba4.zip |
[feature/system-cron] Use a RecursiveDirectoryIterator instead of readdir.
PHPBB3-9596
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 00fc1a5cb7..e099a324bf 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -242,5 +242,5 @@ foreach ($cache->obtain_hooks() as $hook) if (!$config['use_system_cron']) { - $cron = new phpbb_cron_manager(); + $cron = new phpbb_cron_manager($phpbb_root_path, $phpEx); } |