]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
text bugfix to guide text in subscription list.
authorRobin Millette <millette@controlyourself.ca>
Wed, 8 Apr 2009 01:13:37 +0000 (01:13 +0000)
committerRobin Millette <millette@controlyourself.ca>
Wed, 8 Apr 2009 01:13:37 +0000 (01:13 +0000)
actions/subscriptions.php

index 878fd0cd277e57da0086b46d8f461d4670824a1f..b0c0a9b8dff39ecacaa7da246b4b79128bfb2670 100644 (file)
@@ -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');