X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fpeopletagsubscriptionssection.php;h=7fd6bd0bbf7db71837d44fc4393c9476ef40c6fe;hb=0cefab3603321b304914c7ee840e64a478ce050c;hp=63a0d1363c6fa07037ad70b1455e127ec21bafbc;hpb=f47027abbefe35d17df50c67eec7cd1156a5e39a;p=quix0rs-gnu-social.git diff --git a/lib/peopletagsubscriptionssection.php b/lib/peopletagsubscriptionssection.php index 63a0d1363c..7fd6bd0bbf 100644 --- a/lib/peopletagsubscriptionssection.php +++ b/lib/peopletagsubscriptionssection.php @@ -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()