diff options
author | Christopher Vollick <psycotica0@gmail.com> | 2010-02-11 11:19:50 -0500 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-03-05 16:29:14 -0800 |
commit | 43cc24a0ccd89081effa26361e861ba26a9cd842 (patch) | |
tree | d0e9d51c040a5a8b5d061578a9c6c183ad681a80 /actions | |
parent | c1212fb9e3f3ac74dbb0423700e53941d5a29e91 (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.php | 6 |
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; } } |