diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-07-18 00:57:53 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-07-18 00:57:53 +0200 |
commit | 65544066c2fadece3d316fe05d961ea0ffba2925 (patch) | |
tree | f230f6b9c1ac94f4574072aed3b46c3d1ee688bf /phpBB/bin/phpbbcli.php | |
parent | 1a66ad8483cf1ee8cd9630b069dc1020ea9df9ca (diff) | |
parent | e78a6046ca8f90e11527590ecd9c4ce0c8ecbe18 (diff) | |
download | forums-65544066c2fadece3d316fe05d961ea0ffba2925.tar forums-65544066c2fadece3d316fe05d961ea0ffba2925.tar.gz forums-65544066c2fadece3d316fe05d961ea0ffba2925.tar.bz2 forums-65544066c2fadece3d316fe05d961ea0ffba2925.tar.xz forums-65544066c2fadece3d316fe05d961ea0ffba2925.zip |
Merge pull request #2751 from bantu/ticket/12663
[ticket/12663] Extract CLI language string into their own file
* bantu/ticket/12663:
[ticket/12663] Have cli.php language file at top level; unrelated to ACP.
[ticket/12663] Extract CLI language string into their own file
Diffstat (limited to 'phpBB/bin/phpbbcli.php')
-rwxr-xr-x | phpBB/bin/phpbbcli.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/bin/phpbbcli.php b/phpBB/bin/phpbbcli.php index 89bad94184..ca425ad0c4 100755 --- a/phpBB/bin/phpbbcli.php +++ b/phpBB/bin/phpbbcli.php @@ -60,6 +60,7 @@ require($phpbb_root_path . 'includes/compatibility_globals.' . $phpEx); $user = $phpbb_container->get('user'); $user->add_lang('acp/common'); +$user->add_lang('cli'); $application = new \phpbb\console\application('phpBB Console', PHPBB_VERSION, $user); $application->register_container_commands($phpbb_container->get('console.command_collection')); |