1
0
Fork 0

* avoid notice

pull/377/head
till 2012-03-02 20:31:50 +01:00
parent 1c9f649422
commit b30f8078e4
1 changed files with 4 additions and 1 deletions

View File

@ -236,7 +236,10 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
} }
$this->svnUsername = $uri['user']; $this->svnUsername = $uri['user'];
$this->svnUsername = $uri['pass'];
if (isset($uri['pass']) && !empty($uri['pass'])) {
$this->svnPassword = $uri['pass'];
}
$this->useAuth = true; $this->useAuth = true;
} }