forked from GNUsocial/gnu-social
only search elements for links
This commit is contained in:
@@ -347,6 +347,11 @@ class ActivityUtils
|
||||
$els = $element->childNodes;
|
||||
|
||||
foreach ($els as $link) {
|
||||
|
||||
if (!($link instanceof DOMElement)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($link->localName == self::LINK && $link->namespaceURI == self::ATOM) {
|
||||
|
||||
$linkRel = $link->getAttribute(self::REL);
|
||||
|
Reference in New Issue
Block a user