mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-19 01:38:54 +00:00
Merge pull request #2661 from n-aleha/ticket/12773
[ticket/12773] Fix language variable name in cli extension enable command * n-aleha/ticket/12773: [ticket/12773] Fix language variable name in cli extension enable command
This commit is contained in:
commit
e8d7204580
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class enable extends command
|
||||||
|
|
||||||
if ($this->manager->enabled($name))
|
if ($this->manager->enabled($name))
|
||||||
{
|
{
|
||||||
$this->log->add('admin', ANONYMOUS, '', 'LOG_EXTENSION_ENABLE', time(), array($name));
|
$this->log->add('admin', ANONYMOUS, '', 'LOG_EXT_ENABLE', time(), array($name));
|
||||||
$output->writeln("<info>Successfully enabled extension $name</info>");
|
$output->writeln("<info>Successfully enabled extension $name</info>");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue