fix problem with missing list subscribers

This commit is contained in:
Evan Prodromou 2011-09-26 16:15:38 -04:00
parent a19b194a31
commit 2678b937b1
1 changed files with 1 additions and 11 deletions

View File

@ -350,17 +350,7 @@ class ShowprofiletagAction extends Action
}
}
if ($cnt > PROFILES_PER_MINILIST) {
$this->elementStart('p');
$this->element('a', array('href' => common_local_url('profiletagsubscribers',
array('nickname' => $this->tagger->nickname,
'profiletag' => $this->peopletag->tag)),
'class' => 'more'),
// TRANS: Link for more "People following tag x"
// TRANS: if there are more than the mini list's maximum.
_('All subscribers'));
$this->elementEnd('p');
}
// FIXME: link to full list
Event::handle('EndShowProfileTagSubscribersMiniList', array($this));
}