use integer iterator for childNodes in ActivityUtils::getLinks()
This commit is contained in:
parent
d8151311ee
commit
97debbab68
@ -105,7 +105,8 @@ class ActivityUtils
|
||||
$els = $element->childNodes;
|
||||
$out = array();
|
||||
|
||||
foreach ($els as $link) {
|
||||
for ($i = 0; $i < $els->length; $i++) {
|
||||
$link = $els->item($i);
|
||||
if ($link->localName == self::LINK && $link->namespaceURI == self::ATOM) {
|
||||
$linkRel = $link->getAttribute(self::REL);
|
||||
$linkType = $link->getAttribute(self::TYPE);
|
||||
|
Loading…
Reference in New Issue
Block a user