diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-07-22 02:42:13 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-22 02:42:13 +0200 |
commit | 11642a5f9481e4e25402833edb2bac903c23c627 (patch) | |
tree | 0422b7e80bd4eab55672776d982b5888d349b5ad /phpBB/install_new | |
parent | 136ec8d7e25efe7b466cb41f80dc5a75a51eaa68 (diff) | |
download | forums-11642a5f9481e4e25402833edb2bac903c23c627.tar forums-11642a5f9481e4e25402833edb2bac903c23c627.tar.gz forums-11642a5f9481e4e25402833edb2bac903c23c627.tar.bz2 forums-11642a5f9481e4e25402833edb2bac903c23c627.tar.xz forums-11642a5f9481e4e25402833edb2bac903c23c627.zip |
[ticket/13740] Keep language file's names
PHPBB3-13740
Diffstat (limited to 'phpBB/install_new')
-rw-r--r-- | phpBB/install_new/app.php | 2 | ||||
-rw-r--r-- | phpBB/install_new/phpbbcli.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install_new/app.php b/phpBB/install_new/app.php index 75b28fa092..b173f40dfc 100644 --- a/phpBB/install_new/app.php +++ b/phpBB/install_new/app.php @@ -67,7 +67,7 @@ $template->set_custom_style(array( /** @var \phpbb\language\language $language */ $language = $phpbb_installer_container->get('language'); -$language->add_lang(array('common', 'acp/common', 'acp/board', 'install', 'posting')); +$language->add_lang(array('common', 'acp/common', 'acp/board', 'install_new', 'posting')); /* @var $http_kernel \Symfony\Component\HttpKernel\HttpKernel */ $http_kernel = $phpbb_installer_container->get('http_kernel'); diff --git a/phpBB/install_new/phpbbcli.php b/phpBB/install_new/phpbbcli.php index 20a202f584..4c8034be4e 100644 --- a/phpBB/install_new/phpbbcli.php +++ b/phpBB/install_new/phpbbcli.php @@ -61,7 +61,7 @@ $phpbb_filesystem = $phpbb_installer_container->get('filesystem'); /** @var \phpbb\language\language $language */ $language = $phpbb_installer_container->get('language'); -$language->add_lang(array('common', 'acp/common', 'acp/board', 'install', 'posting', 'cli')); +$language->add_lang(array('common', 'acp/common', 'acp/board', 'install_new', 'posting', 'cli')); $application = new \phpbb\console\application('phpBB Installer', PHPBB_VERSION, $language); $application->register_container_commands($phpbb_installer_container->get('console.installer.command_collection')); |