]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/subscriptions.php
add design classes
[quix0rs-gnu-social.git] / actions / subscriptions.php
index 878fd0cd277e57da0086b46d8f461d4670824a1f..095b18ad87db49b97f1c16746d3a7366f6b0f7a4 100644 (file)
@@ -114,17 +114,27 @@ 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');
         $this->raw(common_markup_to_html($message));
         $this->elementEnd('div');
     }
+
+    function showSections()
+    {
+        parent::showSections();
+        $cloud = new SubscriptionsPeopleTagCloudSection($this);
+        $cloud->show();
+
+        $cloud2 = new SubscriptionsPeopleSelfTagCloudSection($this);
+        $cloud2->show();
+    }
 }
 
 class SubscriptionsList extends ProfileList
@@ -139,7 +149,7 @@ class SubscriptionsList extends ProfileList
 
         $this->out->elementStart('form', array('id' => 'subedit-' . $profile->id,
                                           'method' => 'post',
-                                          'class' => 'form_subcription_edit',
+                                          'class' => 'form_subscription_edit',
                                           'action' => common_local_url('subedit')));
         $this->out->hidden('token', common_session_token());
         $this->out->hidden('profile', $profile->id);