1
0
Fork 0

Merge pull request #298 from henriquemoody/master

Some PEAR repositories does not works because of a wrong link parse.
pull/299/head
Jordi Boggiano 2012-02-14 06:29:33 -08:00
commit 08de99f2be
1 changed files with 3 additions and 0 deletions

View File

@ -52,6 +52,9 @@ class PearRepository extends ArrayRepository
foreach ($categories as $category) {
$link = $category->getAttribute("xlink:href");
if (0 !== strpos($link, '/')) {
$link = '/' . $link;
}
try {
$packagesLink = str_replace("info.xml", "packagesinfo.xml", $link);
$this->fetchPear2Packages($this->url . $packagesLink);