diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-07-23 11:16:50 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-07-23 11:16:50 -0400 |
commit | 67e674773edc8de37ff542e8033b86c82593a3b9 (patch) | |
tree | 570fcee0d57f0c3de0d905fe8ccfed64ace3ee21 /lib | |
parent | ec453f01238cfd403750afc921dad32975767bac (diff) | |
parent | a33ffe1357c93b4bf1a717c3ed4883170431575d (diff) |
Merge commit 'br3nda/0.8.x-tagrssfix' into 0.8.x
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rssaction.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php index 6c982705e..0aca96566 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -123,11 +123,7 @@ class Rss10Action extends Action } // Get the list of notices - if (empty($this->tag)) { - $this->notices = $this->getNotices($this->limit); - } else { - $this->notices = $this->getTaggedNotices($this->tag, $this->limit); - } + $this->notices = $this->getNotices($this->limit); $this->showRss(); } |