1
0
mirror of https://github.com/Rogiel/predb synced 2025-12-06 07:32:47 +00:00

Fixes warning on PHP 5.4

This commit is contained in:
2013-10-05 19:28:16 -03:00
parent c4c4208ef8
commit 2c2020d20d

View File

@@ -43,7 +43,7 @@ class Pre_Orlydb_Adapter implements Pre_Adapter {
$node = $xpath->query("/html/body/div/div[2]/div[" . $i . "]/span");
if ($node->length == 0)
break;
$pres[] = &$this->parseRelease($node);
$pres[] = $this->parseRelease($node);
}
return $pres;
}