summaryrefslogtreecommitdiff
path: root/actions/tag.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-08-11 22:48:35 -0400
committerCraig Andrews <candrews@integralblue.com>2009-08-11 22:48:35 -0400
commitc29892c87573e0575b9a4a13210c562e08411148 (patch)
treee252b98a03cbf004d89e40ec7219234d3273d521 /actions/tag.php
parent355effe6315ab7927a54f44fc9ce903085769b5f (diff)
Return a 404 when a page is request that has no notices
Diffstat (limited to 'actions/tag.php')
-rw-r--r--actions/tag.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/actions/tag.php b/actions/tag.php
index 020399d9e..771eb2861 100644
--- a/actions/tag.php
+++ b/actions/tag.php
@@ -21,6 +21,9 @@ if (!defined('LACONICA')) { exit(1); }
class TagAction extends Action
{
+
+ var $notice;
+
function prepare($args)
{
parent::prepare($args);
@@ -42,6 +45,12 @@ class TagAction extends Action
common_set_returnto($this->selfUrl());
+ $this->notice = Notice_tag::getStream($this->tag, (($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;
}
@@ -94,9 +103,7 @@ class TagAction extends Action
function showContent()
{
- $notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
-
- $nl = new NoticeList($notice, $this);
+ $nl = new NoticeList($this->notice, $this);
$cnt = $nl->show();