forked from GNUsocial/gnu-social
use integer iterator for childNodes in ActivityUtils::getLinks()
This commit is contained in:
parent
d8151311ee
commit
97debbab68
@ -104,8 +104,9 @@ class ActivityUtils
|
|||||||
{
|
{
|
||||||
$els = $element->childNodes;
|
$els = $element->childNodes;
|
||||||
$out = array();
|
$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) {
|
if ($link->localName == self::LINK && $link->namespaceURI == self::ATOM) {
|
||||||
$linkRel = $link->getAttribute(self::REL);
|
$linkRel = $link->getAttribute(self::REL);
|
||||||
$linkType = $link->getAttribute(self::TYPE);
|
$linkType = $link->getAttribute(self::TYPE);
|
||||||
|
Loading…
Reference in New Issue
Block a user