Merge pull request #298 from henriquemoody/master
Some PEAR repositories does not works because of a wrong link parse.pull/299/head
commit
08de99f2be
|
@ -52,6 +52,9 @@ class PearRepository extends ArrayRepository
|
||||||
|
|
||||||
foreach ($categories as $category) {
|
foreach ($categories as $category) {
|
||||||
$link = $category->getAttribute("xlink:href");
|
$link = $category->getAttribute("xlink:href");
|
||||||
|
if (0 !== strpos($link, '/')) {
|
||||||
|
$link = '/' . $link;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
$packagesLink = str_replace("info.xml", "packagesinfo.xml", $link);
|
$packagesLink = str_replace("info.xml", "packagesinfo.xml", $link);
|
||||||
$this->fetchPear2Packages($this->url . $packagesLink);
|
$this->fetchPear2Packages($this->url . $packagesLink);
|
||||||
|
|
Loading…
Reference in New Issue