summaryrefslogtreecommitdiff
path: root/actions/foaf.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-03-11 17:16:37 -0500
committerSarven Capadisli <csarven@status.net>2010-03-11 17:16:37 -0500
commit20cb9fa28f865ecfcec31d5285950516172b8326 (patch)
tree05f35344d51830ccf720ac169006f0e6bd56788b /actions/foaf.php
parent00fa7d4b0b2078f3e85693e98c6b284664cc9767 (diff)
foaf:holdsAccount is deprecated in favour of foaf:account. See
http://lists.foaf-project.org/pipermail/foaf-dev/2009-December/009903.html for the news. Patch by Toby Inkster <mail@tobyinkster.co.uk>.
Diffstat (limited to 'actions/foaf.php')
-rw-r--r--actions/foaf.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/foaf.php b/actions/foaf.php
index e9f67b7f2..fc2ec9b12 100644
--- a/actions/foaf.php
+++ b/actions/foaf.php
@@ -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;
}