From ed0f151d863d7449d73336b3697e37259812215e Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Sun, 27 Mar 2016 09:47:45 -0700 Subject: [PATCH] [ticket/14561] Add extra help explaining reclean command PHPBB3-14561 --- phpBB/language/en/cli.php | 1 + phpBB/phpbb/console/command/user/reclean.php | 1 + 2 files changed, 2 insertions(+) diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php index 0048e4569f..872aa464b5 100644 --- a/phpBB/language/en/cli.php +++ b/phpBB/language/en/cli.php @@ -151,4 +151,5 @@ To optionally send an activation email to the user, use the --send-email 'The %command.name% command adds a new user: If this command is run without options, you will be prompted to enter them. To optionally send an email to the new user, use the --send-email option.', + 'CLI_HELP_USER_RECLEAN' => 'Re-clean usernames will check all stored usernames and ensure clean versions are also stored. Cleaned usernames are a case insensitive form, NFC normalized and transformed to ASCII.', )); diff --git a/phpBB/phpbb/console/command/user/reclean.php b/phpBB/phpbb/console/command/user/reclean.php index e2f95c16d8..ba8a638e7b 100644 --- a/phpBB/phpbb/console/command/user/reclean.php +++ b/phpBB/phpbb/console/command/user/reclean.php @@ -57,6 +57,7 @@ class reclean extends command $this ->setName('user:reclean') ->setDescription($this->language->lang('CLI_DESCRIPTION_USER_RECLEAN')) + ->setHelp($this->language->lang('CLI_HELP_USER_RECLEAN')) ; }