mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-25 04:24:31 +02:00
[feature/system-cron] Fix indention in phpbb_cron_manager::load_tasks()
PHPBB3-9596
This commit is contained in:
committed by
Oleg Pudeyev
parent
afc538366b
commit
6235957aa1
@ -93,10 +93,10 @@ class phpbb_cron_manager
|
||||
{
|
||||
foreach ($task_names as $task_name)
|
||||
{
|
||||
$class = "phpbb_cron_task_$task_name";
|
||||
$task = new $class();
|
||||
$wrapper = new phpbb_cron_task_wrapper($task);
|
||||
$this->tasks[] = $wrapper;
|
||||
$class = "phpbb_cron_task_$task_name";
|
||||
$task = new $class();
|
||||
$wrapper = new phpbb_cron_task_wrapper($task);
|
||||
$this->tasks[] = $wrapper;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user