From fc7f32e35d9c77037921fb4a6e40b7ca32baeb79 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 28 Sep 2008 14:12:55 -0400 Subject: [PATCH] pass tag parameter along to stream query darcs-hash:20080928181255-5ed1f-fd49afc180bda9ae7875ad7b70a337e4cd5771d2.gz --- actions/tag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'));