]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
more specific fetchers
authorEvan Prodromou <evan@prodromou.name>
Tue, 10 Jun 2008 12:27:07 +0000 (08:27 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 10 Jun 2008 12:27:07 +0000 (08:27 -0400)
darcs-hash:20080610122707-84dde-403d9869ea32d629e60736822c6f06b0a56a070d.gz

actions/foaf.php

index fc4a81f3fbbf53003393ce25602b921c62eedf18..3169bd2d238bb7f35e255efc675d80159b7a1b16 100644 (file)
@@ -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;