diff options
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/public.php b/actions/public.php index 5b1e50fa3..777612579 100644 --- a/actions/public.php +++ b/actions/public.php @@ -44,7 +44,7 @@ class PublicAction extends StreamAction { # XXX: filter out private notifications $notice->orderBy('created DESC'); - $notice->limit((($page-1)*NOTICES_PER_PAGE) + 1, NOTICES_PER_PAGE); + $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE); $notice->find(); |