From: Evan Prodromou Date: Mon, 26 Sep 2011 20:15:38 +0000 (-0400) Subject: fix problem with missing list subscribers X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2678b937b1410fd1b5fe50cedd9e1b43852a8e9f;p=quix0rs-gnu-social.git fix problem with missing list subscribers --- diff --git a/actions/showprofiletag.php b/actions/showprofiletag.php index a101e4bafa..278246c894 100644 --- a/actions/showprofiletag.php +++ b/actions/showprofiletag.php @@ -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)); }