Merge pull request #277 from francoispluchino/master

Fix bug on authorization of file download for the private repositories
main
Jordi Boggiano 13 years ago
commit c9a770fe94

@ -79,6 +79,7 @@ abstract class VcsDriver
} else if (null !== $this->io->getLastUsername()) {
$authStr = base64_encode($this->io->getLastUsername() . ':' . $this->io->getLastPassword());
$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);

Loading…
Cancel
Save