diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-11 22:48:35 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-08-11 22:48:35 -0400 |
commit | c29892c87573e0575b9a4a13210c562e08411148 (patch) | |
tree | e252b98a03cbf004d89e40ec7219234d3273d521 /actions/public.php | |
parent | 355effe6315ab7927a54f44fc9ce903085769b5f (diff) |
Return a 404 when a page is request that has no notices
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 ca352faf8..2cf2e96e6 100644 --- a/actions/public.php +++ b/actions/public.php @@ -93,7 +93,7 @@ class PublicAction extends Action return; } - if($this->page > 0 && $this->notice->N == 0){ + if($this->page > 1 && $this->notice->N == 0){ $this->serverError(_('No such page'),$code=404); } |