UserRSS Didn't Use the Tag Propery.
This meant that server.com/user/tag/TAG/rss just returned all user data. That was incorrect.
This commit is contained in:
parent
ab8aa67008
commit
1a03820628
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user