Skip to content

Commit

Permalink
Removido o urlencode que impedia senhas com caracteres especias de fu…
Browse files Browse the repository at this point in the history
…ncionar
  • Loading branch information
vicebas committed Apr 15, 2016
1 parent c0cefb0 commit ba640cc
Show file tree
Hide file tree
Showing 14 changed files with 1 addition and 1 deletion.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .phploy
100644 → 100755
Empty file.
Binary file modified bin/phploy.phar
Binary file not shown.
Empty file modified build
100644 → 100755
Empty file.
Empty file modified composer.json
100644 → 100755
Empty file.
Empty file modified contributing.md
100644 → 100755
Empty file.
Empty file modified phploy.bat
100644 → 100755
Empty file.
Empty file modified phploy.ini
100644 → 100755
Empty file.
Empty file modified phploy.php
100644 → 100755
Empty file.
Empty file modified readme.md
100644 → 100755
Empty file.
Empty file modified src/Connection.php
100644 → 100755
Empty file.
Empty file modified src/Git.php
100644 → 100755
Empty file.
Empty file modified src/Options.php
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion src/PHPloy.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ public function prepareServers()
$options['pass'] = $this->getPasswordFromIniFile($name);
} else {
fwrite(STDOUT, 'No password has been provided for user "'.$options['user'].'". Please enter a password: ');
$input = urlencode($this->getPassword());
$input = $this->getPassword(); //urlencode($this->getPassword());

if ($input == '') {
$this->cli->lightGreen()->out('You entered an empty password. Continuing deployment anyway ...');
Expand Down

0 comments on commit ba640cc

Please sign in to comment.