summaryrefslogtreecommitdiff
path: root/actions/foaf.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-10 08:27:07 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-10 08:27:07 -0400
commitd1fc067471a72589c9ae655f67eeea1709e12af5 (patch)
tree95563bdb2b255fe6535765ea6053aea1a8bc9721 /actions/foaf.php
parent3e321063941a1a9ad282b2a930b24c8547cc19fe (diff)
more specific fetchers
darcs-hash:20080610122707-84dde-403d9869ea32d629e60736822c6f06b0a56a070d.gz
Diffstat (limited to 'actions/foaf.php')
-rw-r--r--actions/foaf.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/foaf.php b/actions/foaf.php
index fc4a81f3f..3169bd2d2 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;