aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/extension/command.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-09 00:07:56 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-09 00:07:56 +0200
commita640a455f35ccec26a80e9f9de5693dbb9e71c85 (patch)
treed5eb6889abf7337fe613bf90944843283aadd9f7 /phpBB/phpbb/console/command/extension/command.php
parentd4fc060bcd61228fdf78da4f2d290a7a17546c46 (diff)
downloadforums-a640a455f35ccec26a80e9f9de5693dbb9e71c85.tar
forums-a640a455f35ccec26a80e9f9de5693dbb9e71c85.tar.gz
forums-a640a455f35ccec26a80e9f9de5693dbb9e71c85.tar.bz2
forums-a640a455f35ccec26a80e9f9de5693dbb9e71c85.tar.xz
forums-a640a455f35ccec26a80e9f9de5693dbb9e71c85.zip
[ticket/12074] Managing extensions doesn't produce any log entry
PHPBB3-12074
Diffstat (limited to 'phpBB/phpbb/console/command/extension/command.php')
-rw-r--r--phpBB/phpbb/console/command/extension/command.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/extension/command.php b/phpBB/phpbb/console/command/extension/command.php
index edde7ce2e2..d133c2224f 100644
--- a/phpBB/phpbb/console/command/extension/command.php
+++ b/phpBB/phpbb/console/command/extension/command.php
@@ -13,9 +13,13 @@ abstract class command extends \phpbb\console\command\command
/** @var \phpbb\extension\manager */
protected $manager;
- function __construct(\phpbb\extension\manager $manager)
+ /** @var \phpbb\log\log */
+ protected $log;
+
+ function __construct(\phpbb\extension\manager $manager, \phpbb\log\log $log)
{
$this->manager = $manager;
+ $this->log = $log;
parent::__construct();
}