diff --git a/actions/foaf.php b/actions/foaf.php index fc4a81f3fb..3169bd2d23 100644 --- a/actions/foaf.php +++ b/actions/foaf.php @@ -108,9 +108,9 @@ class FoafAction extends Action { if ($sub->find()) { while ($sub->fetch()) { if ($sub->token) { - $other = Remote_profile::staticGet($sub->subscribed); + $other = Remote_profile::staticGet('id', $sub->subscribed); } else { - $other = User::staticGet($sub->subscribed); + $other = User::staticGet('id', $sub->subscribed); } common_element('knows', array('rdf:resource' => $other->uri)); $person[$other->uri] = array(LISTENEE, $other); @@ -125,9 +125,9 @@ class FoafAction extends Action { if ($sub->find()) { while ($sub->fetch()) { if ($sub->token) { - $other = Remote_profile::staticGet($sub->subscribed); + $other = Remote_profile::staticGet('id', $sub->subscribed); } else { - $other = User::staticGet($sub->subscribed); + $other = User::staticGet('id', $sub->subscribed); } if (array_key_exists($other->uri, $person)) { $person[$other->uri][0] = BOTH;