1
0
Fork 0

Merge pull request #277 from francoispluchino/master

Fix bug on authorization of file download for the private repositories
pull/250/merge
Jordi Boggiano 2012-02-05 11:50:29 -08:00
commit c9a770fe94
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ abstract class VcsDriver
} else if (null !== $this->io->getLastUsername()) { } else if (null !== $this->io->getLastUsername()) {
$authStr = base64_encode($this->io->getLastUsername() . ':' . $this->io->getLastPassword()); $authStr = base64_encode($this->io->getLastUsername() . ':' . $this->io->getLastPassword());
$params['http'] = array('header' => "Authorization: Basic $authStr\r\n"); $params['http'] = array('header' => "Authorization: Basic $authStr\r\n");
$this->io->setAuthorization($this->url, $this->io->getLastUsername(), $this->io->getLastPassword());
} }
$ctx = stream_context_create($params); $ctx = stream_context_create($params);