From: Evan Prodromou Date: Sun, 28 Sep 2008 18:12:55 +0000 (-0400) Subject: pass tag parameter along to stream query X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fc7f32e35d9c77037921fb4a6e40b7ca32baeb79;p=quix0rs-gnu-social.git pass tag parameter along to stream query darcs-hash:20080928181255-5ed1f-fd49afc180bda9ae7875ad7b70a337e4cd5771d2.gz --- diff --git a/actions/tag.php b/actions/tag.php index f8fea341ac..8b5548e458 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -159,7 +159,7 @@ class TagAction extends StreamAction { function show_notices($tag) { - $notices = Notice_tag::getStream((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); + $notices = Notice_tag::getStream($tag, (($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); if ($cnt > 0) { common_element_start('ul', array('id' => 'notices'));