diff options
| -rw-r--r-- | phpBB/phpbb/console/command/user/add.php | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/console/command/user/add.php b/phpBB/phpbb/console/command/user/add.php index 943cdb67a5..42ff000ca4 100644 --- a/phpBB/phpbb/console/command/user/add.php +++ b/phpBB/phpbb/console/command/user/add.php @@ -84,19 +84,19 @@ class add extends \phpbb\console\command\command  			->setDescription($this->language->lang('CLI_DESCRIPTION_USER_ADD'))  			->addOption(  				'username', -				null, +				'U',  				InputOption::VALUE_REQUIRED,  				$this->language->lang('CLI_DESCRIPTION_USER_ADD_OPTION_USERNAME')  			)  			->addOption(  				'password', -				null, +				'P',  				InputOption::VALUE_REQUIRED,  				$this->language->lang('CLI_DESCRIPTION_USER_ADD_OPTION_PASSWORD')  			)  			->addOption(  				'email', -				null, +				'E',  				InputOption::VALUE_REQUIRED,  				$this->language->lang('CLI_DESCRIPTION_USER_ADD_OPTION_EMAIL')  			)  | 
