summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-04-08 01:13:37 +0000
committerRobin Millette <millette@controlyourself.ca>2009-04-08 01:13:37 +0000
commitddb59f72db7f3c6393c0fb245631117e29f093a8 (patch)
tree73e41d1c12ff8db91273597bf0dc6232df3dfa9b /actions
parent3fb6c8218a1c8dc2078bf244bcc937e36f1e0e0e (diff)
text bugfix to guide text in subscription list.
Diffstat (limited to 'actions')
-rw-r--r--actions/subscriptions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/subscriptions.php b/actions/subscriptions.php
index 878fd0cd2..b0c0a9b8d 100644
--- a/actions/subscriptions.php
+++ b/actions/subscriptions.php
@@ -114,11 +114,11 @@ class SubscriptionsAction extends GalleryAction
if ($this->user->id === $current_user->id) {
$message = _('You\'re not listening to anyone\'s notices right now, try subscribing to people you know. Try [people search](%%action.peoplesearch%%), look for members in groups you\'re interested in and in our [featured users](%%action.featured%%). If you\'re a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to people you already follow there.');
} else {
- $message = sprintf(_('%s is not listening to anyone.'), $this->profile->nickname);
+ $message = sprintf(_('%s is not listening to anyone.'), $this->user->nickname);
}
}
else {
- $message = sprintf(_('%s is not listening to anyone.'), $this->profile->fullname);
+ $message = sprintf(_('%s is not listening to anyone.'), $this->user->nickname);
}
$this->elementStart('div', 'guide');