From b6fbb9462c5087e00c6812a9e83aa49fae5403a5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 29 Jan 2009 08:37:40 -0500 Subject: proper pagination for subs and members --- actions/subscribers.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'actions/subscribers.php') diff --git a/actions/subscribers.php b/actions/subscribers.php index 25200079c..22faafaef 100644 --- a/actions/subscribers.php +++ b/actions/subscribers.php @@ -72,9 +72,13 @@ class SubscribersAction extends GalleryAction function showContent() { + parent::showContent(); + $offset = ($this->page-1) * PROFILES_PER_PAGE; $limit = PROFILES_PER_PAGE + 1; + $cnt = 0; + if ($this->tag) { $subscribers = $this->user->getTaggedSubscribers($this->tag, $offset, $limit); } else { @@ -83,7 +87,7 @@ class SubscribersAction extends GalleryAction if ($subscribers) { $subscribers_list = new SubscribersList($subscribers, $this->user, $this); - $subscribers_list->show(); + $cnt = $subscribers_list->show(); } $subscribers->free(); -- cgit v1.2.3-54-g00ecf