X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fpeopletagsection.php;h=09953945160833adc519d10920d44f13cbecc2d0;hb=035aae2745e25d44ab9fe1b7bdffbcaa505ba970;hp=a6c587e04eb95b782f6bd8aab9713a0acb4139b7;hpb=9ef13976fc0fa83ace04866b304dcc80e6adf058;p=quix0rs-gnu-social.git diff --git a/lib/peopletagsection.php b/lib/peopletagsection.php index a6c587e04e..0995394516 100644 --- a/lib/peopletagsection.php +++ b/lib/peopletagsection.php @@ -48,6 +48,8 @@ define('PEOPLETAGS_PER_SECTION', 6); */ class PeopletagSection extends Section { + protected $avatarSize = AVATAR_MINI_SIZE; + function showContent() { $tags = $this->getPeopletags(); @@ -83,7 +85,6 @@ class PeopletagSection extends Section class PeopletagSectionItem extends PeopletagListItem { - function showStart() { } @@ -121,8 +122,8 @@ class PeopletagSectionItem extends PeopletagListItem function showTag() { - // TRANS: Tag summary. %1$d is the number of users tagged with the tag, - // TRANS: %2$d is the number of subscribers to the tag. + // TRANS: List summary. %1$d is the number of users in the list, + // TRANS: %2$d is the number of subscribers to the list. $title = sprintf(_('Listed: %1$d Subscribers: %2$d'), $this->peopletag->taggedCount(), $this->peopletag->subscriberCount()); @@ -136,9 +137,4 @@ class PeopletagSectionItem extends PeopletagListItem htmlspecialchars($this->peopletag->tag)); $this->out->elementEnd('span'); } - - function showAvatar() - { - parent::showAvatar(AVATAR_MINI_SIZE); - } }