forked from GNUsocial/gnu-social
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
c1212fb9e3
commit
43cc24a0cc
@ -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