X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Ffoaf.php;h=db6ce78f2005d0db0ebbd218b106fa4eaafc0aed;hb=ebd9adca69d6e26f3c237c3e95a6995e88d2b64e;hp=3169bd2d238bb7f35e255efc675d80159b7a1b16;hpb=d1fc067471a72589c9ae655f67eeea1709e12af5;p=quix0rs-gnu-social.git diff --git a/actions/foaf.php b/actions/foaf.php index 3169bd2d23..db6ce78f20 100644 --- a/actions/foaf.php +++ b/actions/foaf.php @@ -51,6 +51,8 @@ class FoafAction extends Action { 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'xmlns:rdfs' => 'http://www.w3.org/2000/01/rdf-schema#', + 'xmlns:geo' => + 'http://www.w3.org/2003/01/geo/wgs84_pos#', 'xmlns' => 'http://xmlns.com/foaf/0.1/')); # This is the document about the user @@ -112,6 +114,10 @@ class FoafAction extends Action { } else { $other = User::staticGet('id', $sub->subscribed); } + if (!$other) { + common_debug('Got a bad subscription: '.print_r($sub,TRUE)); + continue; + } common_element('knows', array('rdf:resource' => $other->uri)); $person[$other->uri] = array(LISTENEE, $other); } @@ -125,9 +131,13 @@ class FoafAction extends Action { if ($sub->find()) { while ($sub->fetch()) { if ($sub->token) { - $other = Remote_profile::staticGet('id', $sub->subscribed); + $other = Remote_profile::staticGet('id', $sub->subscriber); } else { - $other = User::staticGet('id', $sub->subscribed); + $other = User::staticGet('id', $sub->subscriber); + } + if (!$other) { + common_debug('Got a bad subscription: '.print_r($sub,TRUE)); + continue; } if (array_key_exists($other->uri, $person)) { $person[$other->uri][0] = BOTH;