]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/peopletagsubscriptionssection.php
Fixed group representation in Directory plugin, also some ->raw calls
[quix0rs-gnu-social.git] / lib / peopletagsubscriptionssection.php
index 63a0d1363c6fa07037ad70b1455e127ec21bafbc..7fd6bd0bbf7db71837d44fc4393c9476ef40c6fe 100644 (file)
@@ -39,30 +39,31 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link     http://status.net/
  */
-
 class PeopletagSubscriptionsSection extends PeopletagSection
 {
     var $profile=null;
+    var $ptags=null;
 
     function __construct($out, Profile $profile)
     {
         parent::__construct($out);
         $this->profile = $profile;
-    }
 
-    function getPeopletags()
-    {
         $limit = PEOPLETAGS_PER_SECTION+1;
         $offset = 0;
 
-        $ptags = $this->profile->getTagSubscriptions($offset, $limit);
+        $this->ptags = $this->profile->getTagSubscriptions($offset, $limit);
+    }
 
-        return $ptags;
+    function getPeopletags()
+    {
+        return $this->ptags;
     }
 
     function title()
     {
-        return _('People tag subscriptions');
+        // TRANS: Title for page that displays lists a user has subscribed to.
+        return _('List subscriptions');
     }
 
     function link()