summaryrefslogtreecommitdiff
path: root/actions/subscriptions.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-18 12:50:41 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-18 12:50:41 -0400
commitb87ba9073275c05a2e8be324348b7f078d4c2fd7 (patch)
tree4bb3249801008c482186f3b05af56687c28cebb6 /actions/subscriptions.php
parenta4b36e28f46433976760102a75595b36d87dd6d7 (diff)
better pagination and no rows in subscriptions and subscribed
darcs-hash:20080618165041-84dde-d98bebb8e74286993c582710ae385d5d7ef1b3fb.gz
Diffstat (limited to 'actions/subscriptions.php')
-rw-r--r--actions/subscriptions.php27
1 files changed, 3 insertions, 24 deletions
diff --git a/actions/subscriptions.php b/actions/subscriptions.php
index 35a707894..e5db39bce 100644
--- a/actions/subscriptions.php
+++ b/actions/subscriptions.php
@@ -72,9 +72,6 @@ class SubscriptionsAction extends Action {
while ($subs->fetch()) {
$idx++;
- if ($idx % SUBSCRIPTIONS_PER_ROW == 1) {
- common_element_start('div', 'row');
- }
$other = Profile::staticGet($subs->subscribed);
@@ -98,32 +95,14 @@ class SubscriptionsAction extends Action {
# XXX: subscribe form here
- if ($idx % SUBSCRIPTIONS_PER_ROW == 0) {
- common_element_end('div');
- }
-
if ($idx == SUBSCRIPTIONS_PER_PAGE) {
break;
}
}
- if ($page > 1) {
- common_element('a', array('href' =>
- common_local_url('subscriptions',
- array('nickname' => $profile->nickname,
- 'page' => $page - 1)),
- 'class' => 'prev'),
- _t('Previous'));
- }
-
- if ($subs_count > SUBSCRIPTIONS_PER_PAGE) {
- common_element('a', array('href' =>
- common_local_url('subscriptions',
- array('nickname' => $profile->nickname,
- 'page' => $page + 1)),
- 'class' => 'next'),
- _t('Next'));
- }
common_element_end('div');
+
+ common_pagination($page > 1, $subs_count > SUBSCRIPTIONS_PER_PAGE,
+ $page, 'subscriptions', array('nickname' => $profile->nickname));
}
} \ No newline at end of file