From: Evan Prodromou Date: Thu, 14 Apr 2011 19:43:08 +0000 (-0400) Subject: No All subscriptions/subscribers links X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b64a1ef0e79f1bdf027ccf20f7f243e3c0bdb576;p=quix0rs-gnu-social.git No All subscriptions/subscribers links --- diff --git a/lib/profileaction.php b/lib/profileaction.php index cd3f5bcde5..d0b0134281 100644 --- a/lib/profileaction.php +++ b/lib/profileaction.php @@ -140,13 +140,6 @@ class ProfileAction extends OwnerDesignAction } } - if ($cnt > PROFILES_PER_MINILIST) { - $this->elementStart('p'); - // TRANS: Text for user subscription statistics if user has more subscriptions than displayed. - $this->statsSectionLink('subscriptions', _('All subscriptions'), 'more'); - $this->elementEnd('p'); - } - Event::handle('EndShowSubscriptionsMiniList', array($this)); } $this->elementEnd('div'); @@ -177,13 +170,6 @@ class ProfileAction extends OwnerDesignAction } } - if ($cnt > PROFILES_PER_MINILIST) { - $this->elementStart('p'); - // TRANS: Text for user subscription statistics if user has more subscribers than displayed. - $this->statsSectionLink('subscribers', _('All subscribers'), 'more'); - $this->elementEnd('p'); - } - Event::handle('EndShowSubscribersMiniList', array($this)); }