aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/cron.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-01-13 00:07:40 +0100
committerOleg Pudeyev <oleg@bsdpower.com>2011-02-12 22:05:54 -0500
commit7a8233020bdeb872dad6057b7799c43c1543aba4 (patch)
treefb9027ef217adf0a931e14df3860d24173df11fa /phpBB/cron.php
parent9bc62056b27a54cccc4e626350838113a3ba80db (diff)
downloadforums-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/cron.php')
-rw-r--r--phpBB/cron.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/cron.php b/phpBB/cron.php
index cdfd8d0fbe..9f13a9f462 100644
--- a/phpBB/cron.php
+++ b/phpBB/cron.php
@@ -63,7 +63,7 @@ if ($config['use_system_cron'])
{
$use_shutdown_function = false;
- $cron = new phpbb_cron_manager();
+ $cron = new phpbb_cron_manager($phpbb_root_path, $phpEx);
}
else
{