summaryrefslogtreecommitdiff
path: root/actions/public.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-08-14 13:05:29 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-08-14 13:05:29 -0700
commit1b204fde39271acd38bb8f9dd16734f15c68138a (patch)
tree946f756cde56cee6d0fe8e131c863639a8ad6113 /actions/public.php
parent2cf50ea432eab61e8cc2b007d486d0de3cd5aecf (diff)
Revert "Return a 404 when a page is request that has no notices"
An empty list still exists; we shouldn't return a 404. This reverts commit c29892c87573e0575b9a4a13210c562e08411148.
Diffstat (limited to 'actions/public.php')
-rw-r--r--actions/public.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/public.php b/actions/public.php
index 2cf2e96e6..ca352faf8 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -93,7 +93,7 @@ class PublicAction extends Action
return;
}
- if($this->page > 1 && $this->notice->N == 0){
+ if($this->page > 0 && $this->notice->N == 0){
$this->serverError(_('No such page'),$code=404);
}