diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2014-06-26 23:44:41 +0200 | 
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-26 23:44:41 +0200 | 
| commit | e8d7204580c1d244574387bb420e15f8249122cd (patch) | |
| tree | 5d6a2778864e7a0a6f574d61398cc2f428acf707 /phpBB/phpbb/console | |
| parent | ffa1f9baf559468ecb06a7ae88b73f5a7232b53f (diff) | |
| parent | a54d74bf09a65a36c00daefed022e3e99fcd047f (diff) | |
| download | forums-e8d7204580c1d244574387bb420e15f8249122cd.tar forums-e8d7204580c1d244574387bb420e15f8249122cd.tar.gz forums-e8d7204580c1d244574387bb420e15f8249122cd.tar.bz2 forums-e8d7204580c1d244574387bb420e15f8249122cd.tar.xz forums-e8d7204580c1d244574387bb420e15f8249122cd.zip  | |
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
Diffstat (limited to 'phpBB/phpbb/console')
| -rw-r--r-- | phpBB/phpbb/console/command/extension/enable.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/extension/enable.php b/phpBB/phpbb/console/command/extension/enable.php index 0cdf26d4db..05e1d927c6 100644 --- a/phpBB/phpbb/console/command/extension/enable.php +++ b/phpBB/phpbb/console/command/extension/enable.php @@ -39,7 +39,7 @@ class enable extends command  		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>");  			return 0;  		}  | 
