From 6969a9d0db08b86ac26cdb4ce6b53edd5a6fab5b Mon Sep 17 00:00:00 2001 From: rubencm Date: Mon, 8 Jun 2020 10:44:12 +0000 Subject: [PATCH] [ticket/16346] Remove parameters PHPBB3-16346 --- phpBB/phpbb/cron/manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/cron/manager.php b/phpBB/phpbb/cron/manager.php index 59ee693074..f073721cc5 100644 --- a/phpBB/phpbb/cron/manager.php +++ b/phpBB/phpbb/cron/manager.php @@ -159,6 +159,6 @@ class manager */ public function wrap_task(\phpbb\cron\task\task $task) { - return new wrapper($task, $this->routing_helper, $this->phpbb_root_path, $this->php_ext); + return new wrapper($task, $this->routing_helper); } }