From 1a03820628d37b9db6e47be22d98789f551f1959 Mon Sep 17 00:00:00 2001
From: Christopher Vollick <psycotica0@gmail.com>
Date: Thu, 11 Feb 2010 11:19:50 -0500
Subject: [PATCH] UserRSS Didn't Use the Tag Propery.

This meant that server.com/user/tag/TAG/rss just returned all user data.
That was incorrect.
---
 actions/userrss.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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;
         }
     }
-- 
2.39.5