summaryrefslogtreecommitdiff
path: root/actions/tag.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-09-28 14:12:55 -0400
committerEvan Prodromou <evan@controlyourself.ca>2008-09-28 14:12:55 -0400
commitfc7f32e35d9c77037921fb4a6e40b7ca32baeb79 (patch)
treeb760b89ce0706969ff069c5219d58dea2f11e3ce /actions/tag.php
parentdbcd7cd29c2f5f429f14d468a42f6a6af9c82636 (diff)
pass tag parameter along to stream query
darcs-hash:20080928181255-5ed1f-fd49afc180bda9ae7875ad7b70a337e4cd5771d2.gz
Diffstat (limited to 'actions/tag.php')
-rw-r--r--actions/tag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/tag.php b/actions/tag.php
index f8fea341a..8b5548e45 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'));