diff options
Diffstat (limited to 'actions/all.php')
-rw-r--r-- | actions/all.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/all.php b/actions/all.php index 92ae385ca..7cd1f5beb 100644 --- a/actions/all.php +++ b/actions/all.php @@ -38,7 +38,7 @@ class AllAction extends ShowstreamAction { $page = $this->arg('page') || 1; - $notice->limit((($page-1)*NOTICES_PER_PAGE) + 1, NOTICES_PER_PAGE); + $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE); $notice->find(); @@ -48,6 +48,7 @@ class AllAction extends ShowstreamAction { $this->show_notice($notice); } + # XXX: show a link for the next page common_element_end('div'); } } |