From bb7496bac23d5aa70e0f22e1b845b5f971e725b8 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Mon, 19 Apr 2010 07:29:26 -0400 Subject: [PATCH] [feature/system-cron] Changed stray include_once to include. PHPBB3-9596 --- phpBB/includes/cron/cron_task_base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /**