mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[feature/system-cron] Fix indention in phpbb_cron_manager::load_tasks()
PHPBB3-9596
This commit is contained in:
parent
afc538366b
commit
6235957aa1
1 changed files with 4 additions and 4 deletions
|
@ -93,10 +93,10 @@ class phpbb_cron_manager
|
||||||
{
|
{
|
||||||
foreach ($task_names as $task_name)
|
foreach ($task_names as $task_name)
|
||||||
{
|
{
|
||||||
$class = "phpbb_cron_task_$task_name";
|
$class = "phpbb_cron_task_$task_name";
|
||||||
$task = new $class();
|
$task = new $class();
|
||||||
$wrapper = new phpbb_cron_task_wrapper($task);
|
$wrapper = new phpbb_cron_task_wrapper($task);
|
||||||
$this->tasks[] = $wrapper;
|
$this->tasks[] = $wrapper;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue