[ticket/12655] Don't require acp/common again in the commands

PHPBB3-12655
This commit is contained in:
Tristan Darricau 2014-06-04 14:47:00 +02:00
parent 5efd55a348
commit 6c9518ea32
2 changed files with 1 additions and 2 deletions

View file

@ -43,7 +43,6 @@ class purge extends \phpbb\console\command\command
$this->log = $log;
$this->user = $user;
$this->config = $config;
$this->user->add_lang(array('acp/common'));
parent::__construct();
}

View file

@ -43,7 +43,7 @@ class migrate extends \phpbb\console\command\command
$this->cache = $cache;
$this->log = $log;
$this->user = $user;
$this->user->add_lang(array('common', 'acp/common', 'install', 'migrator'));
$this->user->add_lang(array('common', 'install', 'migrator'));
parent::__construct();
}