From: Mark A. Hershberger Date: Fri, 22 Jun 2012 22:05:24 +0000 (-0400) Subject: Bug 26911 - cli install doesn't ask for a password X-Git-Tag: 1.31.0-rc.0~23242^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=7e6dfd88a075d3df5b57151090b4ec1b21f6b448;p=lhc%2Fweb%2Fwiklou.git Bug 26911 - cli install doesn't ask for a password Make the password parameter mandatory and change the help message. Change-Id: Ibea29858be70a5188d167b9c1267b2db2564a96b --- diff --git a/maintenance/install.php b/maintenance/install.php index 65d6a706f2..8e0b2e1395 100644 --- a/maintenance/install.php +++ b/maintenance/install.php @@ -39,7 +39,7 @@ class CommandLineInstaller extends Maintenance { $this->addArg( 'name', 'The name of the wiki', true); $this->addArg( 'admin', 'The username of the wiki administrator (WikiSysop)', true ); - $this->addOption( 'pass', 'The password for the wiki administrator. You will be prompted for this if it isn\'t provided', false, true ); + $this->addOption( 'pass', 'The password for the wiki administrator.', true, true ); /* $this->addOption( 'email', 'The email for the wiki administrator', false, true ); */ $this->addOption( 'scriptpath', 'The relative path of the wiki in the web server (/wiki)', false, true );