]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
use omb_service_filter() rather than omb_match_service()
authorEvan Prodromou <evan@prodromou.name>
Mon, 2 Jun 2008 17:59:36 +0000 (13:59 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 2 Jun 2008 17:59:36 +0000 (13:59 -0400)
darcs-hash:20080602175936-84dde-d21c8236ef5ffd788edc81d9d7a932b2eae0ec7d.gz

actions/remotesubscribe.php

index d3420f888b77ac0e6f208c931b09aedc66e7b8fa..c2c633c16abc49528e7bf02dbcef5e7832773e15 100644 (file)
@@ -129,7 +129,7 @@ class RemotesubscribeAction extends Action {
 
                # XXX: the following code could probably be refactored to eliminate dupes
                
-               $oauth_service = $xrds->services(omb_match_service(OAUTH_DISCOVERY));
+               $oauth_service = $xrds->services(omb_service_filter(OAUTH_DISCOVERY));
                
                if (!$oauth_service) {
                        return NULL;
@@ -138,7 +138,7 @@ class RemotesubscribeAction extends Action {
                $xrd = $this->getXRD($oauth_service, $xrds);
                $this->addServices($xrd, $oauth_endpoints, $omb);
 
-               $omb_service = $xrds->services(omb_match_service(OMB_NAMESPACE));
+               $omb_service = $xrds->services(omb_service_filter(OMB_NAMESPACE));
 
                if (!$omb_service) {
                        return NULL;
@@ -183,7 +183,7 @@ class RemotesubscribeAction extends Action {
 
        function addServices($xrd, $types, &$omb) {
                foreach ($types as $type) {
-                       $matches = $xrd->services(omb_match_service($type));
+                       $matches = $xrd->services(omb_service_filter($type));
                        if ($matches) {
                                $omb[$type] = $services[0];
                        } else {