From 2678b937b1410fd1b5fe50cedd9e1b43852a8e9f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 26 Sep 2011 16:15:38 -0400 Subject: [PATCH] fix problem with missing list subscribers --- actions/showprofiletag.php | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) 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)); } -- 2.39.2