Skip to content

Commit

Permalink
allow empty string as password (e.g. used at tigris for username guest)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Jun 14, 2011
1 parent b2e35c2 commit 658bf81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/configclass.php
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ function svnCredentials() {
if ($this->username !== null && $this->username !== '') {
$params .= ' --username '.quote($this->username);
}
if ($this->password !== null && $this->password !== '') {
if ($this->password !== null) {
$params .= ' --password '.quote($this->password);
}
return $params;
Expand Down

0 comments on commit 658bf81

Please sign in to comment.