diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-09-17 14:38:08 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-09-17 14:38:08 -0400 |
commit | 0d72456a84b8fc9a612b26ac8c26ce12c1759711 (patch) | |
tree | c0056c437065ba7ea58260573ace29515a7ebc6e /actions | |
parent | fb39f577f529ab9adc7ef326252317421df3fd5e (diff) | |
parent | c4ef2346b864b293fc4c4b02c72b07d18718d0cf (diff) |
Merge remote branch 'cvollick/userTagPagination' into 0.8.x
Diffstat (limited to 'actions')
-rw-r--r-- | actions/showstream.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 4d3067eed..89285b13c 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -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() |