diff -urN statusnet-mainline/actions/foafgroup.php statusnet-mine/actions/foafgroup.php
--- statusnet-mainline/actions/foafgroup.php	2009-12-11 22:19:18.000000000 +0000
+++ statusnet-mine/actions/foafgroup.php	2009-12-16 15:09:12.000000000 +0000
@@ -139,7 +139,7 @@
             {
                 $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');
@@ -147,7 +147,7 @@
                 $this->elementEnd('statusnet:GroupAdminRole');
                 $this->elementEnd('sioc:has_function');
                 $this->elementEnd('sioc:User');
-                $this->elementEnd('holdsAccount');
+                $this->elementEnd('account');
                 $this->elementEnd('Agent');
             }
             else
diff -urN statusnet-mainline/actions/foaf.php statusnet-mine/actions/foaf.php
--- statusnet-mainline/actions/foaf.php	2009-12-11 22:19:18.000000000 +0000
+++ statusnet-mine/actions/foaf.php	2009-12-16 15:09:45.000000000 +0000
@@ -251,7 +251,7 @@
         }
 
         // Their account
-        $this->elementStart('holdsAccount');
+        $this->elementStart('account');
         $this->elementStart('OnlineAccount', $attr);
         if ($service) {
             $this->element('accountServiceHomepage', array('rdf:resource' =>
@@ -306,7 +306,7 @@
         }
 
         $this->elementEnd('OnlineAccount');
-        $this->elementEnd('holdsAccount');
+        $this->elementEnd('account');
 
         return $person;
     }
diff -urN statusnet-mainline/lib/rssaction.php statusnet-mine/lib/rssaction.php
--- statusnet-mainline/lib/rssaction.php	2009-12-11 22:19:18.000000000 +0000
+++ statusnet-mine/lib/rssaction.php	2009-12-16 15:08:46.000000000 +0000
@@ -330,7 +330,7 @@
             if ($profile->fullname) {
                 $this->element('foaf:name', null, $profile->fullname);
             }
-            $this->element('foaf:holdsAccount', array('rdf:resource' => $uri.'#acct'));
+            $this->element('foaf:account', array('rdf:resource' => $uri.'#acct'));
             $avatar = $profile->avatarUrl();
             $this->element('foaf:depiction', array('rdf:resource' => $avatar));
             $this->elementEnd('foaf:Agent');
