diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2010-04-17 07:05:54 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-12 22:05:49 -0500 |
commit | 8f567a21a3fe5c4ceeaed8c38c6bcf8251821e3a (patch) | |
tree | de44e3b6cca4c0efb5592db1a54d3eb71b2063bb /phpBB | |
parent | b620f299375426e04af6d8f61a849490560da781 (diff) | |
download | forums-8f567a21a3fe5c4ceeaed8c38c6bcf8251821e3a.tar forums-8f567a21a3fe5c4ceeaed8c38c6bcf8251821e3a.tar.gz forums-8f567a21a3fe5c4ceeaed8c38c6bcf8251821e3a.tar.bz2 forums-8f567a21a3fe5c4ceeaed8c38c6bcf8251821e3a.tar.xz forums-8f567a21a3fe5c4ceeaed8c38c6bcf8251821e3a.zip |
[feature/system-cron] Updated includes after moving files.
PHPBB3-9596
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/common.php | 2 | ||||
-rw-r--r-- | phpBB/cron.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 3586031c36..e2300f0bd5 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -242,6 +242,6 @@ foreach ($cache->obtain_hooks() as $hook) if (!$config['use_system_cron']) { - require($phpbb_root_path . 'includes/cron.' . $phpEx); + include($phpbb_root_path . 'includes/cron/cron_manager.' . $phpEx); $cron = new cron(); } diff --git a/phpBB/cron.php b/phpBB/cron.php index 2d9e6afe5d..0621d7651b 100644 --- a/phpBB/cron.php +++ b/phpBB/cron.php @@ -15,7 +15,7 @@ define('IN_CRON', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); -include($phpbb_root_path . 'includes/cron_lock.' . $phpEx); +include($phpbb_root_path . 'includes/cron/cron_lock.' . $phpEx); // Do not update users last page entry $user->session_begin(false); |