diff options
author | Matt Friedman <maf675@gmail.com> | 2016-02-29 21:03:32 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-02-29 21:03:32 -0800 |
commit | 0ca4484525f69ea5e7c5cd28f671364604725e40 (patch) | |
tree | 939afc1f454af258885c2daa9e0c134dc873cc6f /phpBB/phpbb/console | |
parent | e905c6226db367ab3a04e373bee56a85d8251cc7 (diff) | |
download | forums-0ca4484525f69ea5e7c5cd28f671364604725e40.tar forums-0ca4484525f69ea5e7c5cd28f671364604725e40.tar.gz forums-0ca4484525f69ea5e7c5cd28f671364604725e40.tar.bz2 forums-0ca4484525f69ea5e7c5cd28f671364604725e40.tar.xz forums-0ca4484525f69ea5e7c5cd28f671364604725e40.zip |
[ticket/12684] Move all lang keys to cli
PHPBB3-12684
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r-- | phpBB/phpbb/console/command/user/add.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/user/add.php b/phpBB/phpbb/console/command/user/add.php index 59d9eaa117..6edd214d14 100644 --- a/phpBB/phpbb/console/command/user/add.php +++ b/phpBB/phpbb/console/command/user/add.php @@ -197,7 +197,7 @@ class add extends \phpbb\console\command\command $this->send_activation_email($user_id, $data); } - $io->success($this->language->lang('SUCCESS_ADD_USER', $data['username'])); + $io->success($this->language->lang('CLI_USER_ADD_SUCCESS', $data['username'])); return 0; } |