diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-08-24 12:04:22 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-08-25 22:24:28 +0200 |
commit | 17e7a89a60f700efc8a0b082b7a82005e6288e80 (patch) | |
tree | 628505c1a127ba5b531e4bb24bda4f659bb7317d /phpBB/bin/phpbbcli.php | |
parent | f6a4843c6df3a9b0490eb3d273ebed7d04a89582 (diff) | |
download | forums-17e7a89a60f700efc8a0b082b7a82005e6288e80.tar forums-17e7a89a60f700efc8a0b082b7a82005e6288e80.tar.gz forums-17e7a89a60f700efc8a0b082b7a82005e6288e80.tar.bz2 forums-17e7a89a60f700efc8a0b082b7a82005e6288e80.tar.xz forums-17e7a89a60f700efc8a0b082b7a82005e6288e80.zip |
[ticket/14124] Automatically translate exceptions in CLI
PHPBB3-14124
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 18657aed0a..d85b9a8d46 100755 --- a/phpBB/bin/phpbbcli.php +++ b/phpBB/bin/phpbbcli.php @@ -71,5 +71,6 @@ $user->add_lang('cli'); $lang = $phpbb_container->get('language'); $application = new \phpbb\console\application('phpBB Console', PHPBB_VERSION, $lang); +$application->setDispatcher($phpbb_container->get('dispatcher')); $application->register_container_commands($phpbb_container->get('console.command_collection')); $application->run($input); |