diff options
Diffstat (limited to 'actions/userrss.php')
-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; } } |