Merge remote branch 'cvollick/userTagPagination' into 0.8.x

This commit is contained in:
Craig Andrews 2009-09-17 14:38:08 -04:00
commit 0d72456a84
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()