diff options
| author | Oleg Pudeyev <oleg@bsdpower.com> | 2010-04-19 07:29:26 -0400 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-12 22:05:50 -0500 |
| commit | bb7496bac23d5aa70e0f22e1b845b5f971e725b8 (patch) | |
| tree | e7223c66bfe94e385b2b457064456d6faedb7d29 /phpBB/includes/cron | |
| parent | 763dc86c166ab850007fea8da4622e4cd1eeafc8 (diff) | |
| download | forums-bb7496bac23d5aa70e0f22e1b845b5f971e725b8.tar forums-bb7496bac23d5aa70e0f22e1b845b5f971e725b8.tar.gz forums-bb7496bac23d5aa70e0f22e1b845b5f971e725b8.tar.bz2 forums-bb7496bac23d5aa70e0f22e1b845b5f971e725b8.tar.xz forums-bb7496bac23d5aa70e0f22e1b845b5f971e725b8.zip | |
[feature/system-cron] Changed stray include_once to include.
PHPBB3-9596
Diffstat (limited to 'phpBB/includes/cron')
| -rw-r--r-- | phpBB/includes/cron/cron_task_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/cron/cron_task_base.php b/phpBB/includes/cron/cron_task_base.php index f35ecd4ae0..2059794cec 100644 --- a/phpBB/includes/cron/cron_task_base.php +++ b/phpBB/includes/cron/cron_task_base.php @@ -18,7 +18,7 @@ if (!defined('IN_PHPBB')) if (!class_exists('cron_task')) { - include_once($phpbb_root_path . 'includes/cron/cron_task.' . $phpEx); + include($phpbb_root_path . 'includes/cron/cron_task.' . $phpEx); } /** |
