diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-05-18 18:18:08 -0400 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-05-18 18:18:08 -0400 |
commit | f5606b6aa3868d777c6c697cf1bbc5348cb2ccc3 (patch) | |
tree | 39dc174a6e535412f21d166ac8e19b0c8dfb9bf5 /lib/rssaction.php | |
parent | 57860b4d8a0ae201b32c9eb611ecdcb8e850a13a (diff) |
Added RSS for personal tags
Diffstat (limited to 'lib/rssaction.php')
-rw-r--r-- | lib/rssaction.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php index ddba862dc..2f25ed7e4 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -97,7 +97,11 @@ class Rss10Action extends Action // Parent handling, including cache check parent::handle($args); // Get the list of notices - $this->notices = $this->getNotices($this->limit); + if (empty($this->tag)) { + $this->notices = $this->getNotices($this->limit); + } else { + $this->notices = $this->getTaggedNotices($this->tag, $this->limit); + } $this->showRss(); } |