aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install_new
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install_new')
-rw-r--r--phpBB/install_new/app.php2
-rw-r--r--phpBB/install_new/phpbbcli.php2
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'));