Pagination of user/tag was navigating to wrong page.

Fixes bug #1736.
This commit is contained in:
Christopher Vollick 2009-09-16 05:07:33 -04:00
parent cf0d449fd8
commit c4ef2346b8
1 changed files with 6 additions and 1 deletions

View File

@ -380,8 +380,13 @@ class ShowstreamAction extends ProfileAction
$this->showEmptyListMessage();
}
$args = array('nickname' => $this->user->nickname);
if (!empty($this->tag))
{
$args['tag'] = $this->tag;
}
$this->pagination($this->page>1, $cnt>NOTICES_PER_PAGE, $this->page,
'showstream', array('nickname' => $this->user->nickname));
'showstream', $args);
}
function showAnonymousMessage()