]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix problem with missing list subscribers
authorEvan Prodromou <evan@status.net>
Mon, 26 Sep 2011 20:15:38 +0000 (16:15 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 26 Sep 2011 20:15:38 +0000 (16:15 -0400)
actions/showprofiletag.php

index a101e4bafab74a053b9bbbdab10f7ac67150f833..278246c89421a7a19b245135cf7ad236a62a4840 100644 (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));
         }