use ReplyNoticeStream for replies page

This commit is contained in:
Evan Prodromou 2011-05-30 11:22:36 -04:00
parent 0dbdcf2936
commit 5a9d969f22
1 changed files with 5 additions and 2 deletions

View File

@ -85,8 +85,11 @@ class RepliesAction extends OwnerDesignAction
common_set_returnto($this->selfUrl());
$this->notice = $this->user->getReplies(($this->page-1) * NOTICES_PER_PAGE,
NOTICES_PER_PAGE + 1);
$stream = new ReplyNoticeStream($this->user->id,
Profile::current());
$this->notice = $stream->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)