summaryrefslogtreecommitdiff
path: root/actions/foaf.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2009-11-08 22:26:13 +0100
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2009-11-08 22:26:13 +0100
commit81b4a381d9ddc71ed8a53c074ea10910882d3156 (patch)
tree6870abcd4d832a3cc1a42ee08c553f85c82ee8cc /actions/foaf.php
parent2a8b6c49a165aa437d9e99b996d433531fa4d195 (diff)
* check usage of 'people' in UI and change it to 'users' or something else in most places
* change some contractions to full text in UI messages
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 356393304..dd2747069 100644
--- a/actions/foaf.php
+++ b/actions/foaf.php
@@ -136,7 +136,7 @@ class FoafAction extends Action
$person = $this->showMicrobloggingAccount($this->profile,
common_root_url(), $this->user->uri, false);
- // Get people who subscribe to user
+ // Get users who subscribe to user
$sub = new Subscription();
$sub->subscribed = $this->profile->id;
@@ -250,7 +250,7 @@ class FoafAction extends Action
if ($isSubscriber) {
$this->element('sioc:follows', array('rdf:resource'=>$this->user->uri . '#acct'));
} else {
- // Get people user is subscribed to
+ // Get users user is subscribed to
$sub = new Subscription();
$sub->subscriber = $profile->id;
$sub->whereAdd('subscriber != subscribed');