X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Ftag.php;h=751e8dcec52e92ef65c5a5bdce6ba4ce1159109b;hb=4238875ebe784dfcac2d639ef48cae005923f86d;hp=5e52630c8556660038f62c3ee1e854c9d1dbc09c;hpb=7617fb65d701e3c8fbdb5e2798c2956531facf67;p=quix0rs-gnu-social.git diff --git a/actions/tag.php b/actions/tag.php index 5e52630c85..751e8dcec5 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -46,11 +46,12 @@ class TagAction extends ManagedAction common_set_returnto($this->selfUrl()); - $this->notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); + $this->notice = Notice_tag::getStream($this->tag)->getNotices(($this->page-1)*NOTICES_PER_PAGE, + NOTICES_PER_PAGE + 1); if($this->page > 1 && $this->notice->N == 0){ - // TRANS: Server error when page not found (404). - $this->serverError(_('No such page.'),$code=404); + // TRANS: Client error when page not found (404). + $this->clientError(_('No such page.'), 404); } return true; @@ -110,7 +111,7 @@ class TagAction extends ManagedAction { if(Event::handle('StartTagShowContent', array($this))) { - $nl = new NoticeList($this->notice, $this); + $nl = new PrimaryNoticeList($this->notice, $this, array('show_n'=>NOTICES_PER_PAGE)); $cnt = $nl->show();