summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorChristopher Vollick <psycotica0@gmail.com>2010-02-11 11:19:50 -0500
committerZach Copley <zach@status.net>2010-03-05 16:42:17 -0800
commit1a03820628d37b9db6e47be22d98789f551f1959 (patch)
tree886dace577ef8b0067462387024feabd54de8e05 /actions
parentab8aa670087580f164f96af6727eef5d2cf0a6e1 (diff)
UserRSS Didn't Use the Tag Propery.
This meant that server.com/user/tag/TAG/rss just returned all user data. That was incorrect.
Diffstat (limited to 'actions')
-rw-r--r--actions/userrss.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/actions/userrss.php b/actions/userrss.php
index 19e610551..6029f4431 100644
--- a/actions/userrss.php
+++ b/actions/userrss.php
@@ -38,7 +38,11 @@ class UserrssAction extends Rss10Action
$this->clientError(_('No such user.'));
return false;
} else {
- $this->notices = $this->getNotices($this->limit);
+ if ($this->tag) {
+ $this->notices = $this->getTaggedNotices($tag, $this->limit);
+ } else {
+ $this->notices = $this->getNotices($this->limit);
+ }
return true;
}
}