1
0
Fork 0

hide password input

pull/410/head
till 2012-03-12 17:25:45 +01:00
parent 96298a33dc
commit 244cc2a8c2
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
$this->io->write("The Subversion server ({$this->baseUrl}) requested credentials:"); $this->io->write("The Subversion server ({$this->baseUrl}) requested credentials:");
$this->svnUsername = $this->io->ask("Username"); $this->svnUsername = $this->io->ask("Username");
$this->svnPassword = $this->io->ask("Password"); $this->svnPassword = $this->io->askAndHideAnswer("Password");
$this->useAuth = true; $this->useAuth = true;
static $cacheTrueAnswers = array('yes', 'y', 'true', 'ja', 'si', 'da'); static $cacheTrueAnswers = array('yes', 'y', 'true', 'ja', 'si', 'da');