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/replies.php | |
parent | 355effe6315ab7927a54f44fc9ce903085769b5f (diff) |
Return a 404 when a page is request that has no notices
Diffstat (limited to 'actions/replies.php')
-rw-r--r-- | actions/replies.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/actions/replies.php b/actions/replies.php index f14383d33..fcfc3a272 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -48,6 +48,7 @@ require_once INSTALLDIR.'/lib/feedlist.php'; class RepliesAction extends OwnerDesignAction { var $page = null; + var $notice; /** * Prepare the object @@ -84,6 +85,13 @@ class RepliesAction extends OwnerDesignAction common_set_returnto($this->selfUrl()); + $this->notice = $this->user->getReplies(($this->page-1) * NOTICES_PER_PAGE, + NOTICES_PER_PAGE + 1); + + if($this->page > 1 && $this->notice->N == 0){ + $this->serverError(_('No such page'),$code=404); + } + return true; } @@ -159,10 +167,7 @@ class RepliesAction extends OwnerDesignAction function showContent() { - $notice = $this->user->getReplies(($this->page-1) * NOTICES_PER_PAGE, - NOTICES_PER_PAGE + 1); - - $nl = new NoticeList($notice, $this); + $nl = new NoticeList($this->notice, $this); $cnt = $nl->show(); if (0 === $cnt) { |