]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
foaf:holdsAccount is deprecated in favour of foaf:account. See
authorSarven Capadisli <csarven@status.net>
Thu, 11 Mar 2010 22:16:37 +0000 (17:16 -0500)
committerSarven Capadisli <csarven@status.net>
Thu, 11 Mar 2010 22:16:37 +0000 (17:16 -0500)
http://lists.foaf-project.org/pipermail/foaf-dev/2009-December/009903.html
for the news. Patch by Toby Inkster <mail@tobyinkster.co.uk>.

actions/foaf.php
actions/foafgroup.php

index e9f67b7f2bd0208e248bff5d30a8857a9e4d5113..fc2ec9b12f20c9b0ac93d95c100e8bc200ef1ba4 100644 (file)
@@ -251,7 +251,7 @@ class FoafAction extends Action
         }
 
         // Their account
-        $this->elementStart('holdsAccount');
+        $this->elementStart('account');
         $this->elementStart('OnlineAccount', $attr);
         if ($service) {
             $this->element('accountServiceHomepage', array('rdf:resource' =>
@@ -306,7 +306,7 @@ class FoafAction extends Action
         }
 
         $this->elementEnd('OnlineAccount');
-        $this->elementEnd('holdsAccount');
+        $this->elementEnd('account');
 
         return $person;
     }
index ebdf1cee2567555748fe04e9423203f4f1a7131b..d685554ac4dd8aa5a9ac402daaf5ede07240e03a 100644 (file)
@@ -146,7 +146,7 @@ class FoafGroupAction extends Action
             {
                 $this->elementStart('Agent', array('rdf:about' => $uri));
                 $this->element('nick', null, $details['nickname']);
-                $this->elementStart('holdsAccount');
+                $this->elementStart('account');
                 $this->elementStart('sioc:User', array('rdf:about'=>$uri.'#acct'));
                 $this->elementStart('sioc:has_function');
                 $this->elementStart('statusnet:GroupAdminRole');
@@ -154,7 +154,7 @@ class FoafGroupAction extends Action
                 $this->elementEnd('statusnet:GroupAdminRole');
                 $this->elementEnd('sioc:has_function');
                 $this->elementEnd('sioc:User');
-                $this->elementEnd('holdsAccount');
+                $this->elementEnd('account');
                 $this->elementEnd('Agent');
             }
             else
@@ -177,4 +177,4 @@ class FoafGroupAction extends Action
         $this->elementEnd('Document');
     }
 
-}
\ No newline at end of file
+}