1
0
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:
Andreas Fischer
2010-12-14 13:26:42 +01:00
committed by Oleg Pudeyev
parent afc538366b
commit 6235957aa1

View File

@ -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;
}
}