From: Christopher Vollick Date: Thu, 11 Feb 2010 16:19:50 +0000 (-0500) Subject: UserRSS Didn't Use the Tag Propery. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1a03820628d37b9db6e47be22d98789f551f1959;p=quix0rs-gnu-social.git UserRSS Didn't Use the Tag Propery. This meant that server.com/user/tag/TAG/rss just returned all user data. That was incorrect. --- diff --git a/actions/userrss.php b/actions/userrss.php index 19e610551d..6029f44318 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; } }