diff options
author | Zach Copley <zach@status.net> | 2010-03-05 16:20:33 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-03-05 16:23:28 -0800 |
commit | ab8aa670087580f164f96af6727eef5d2cf0a6e1 (patch) | |
tree | eefe13a775627fd651e313587f66be3af35e5163 /actions | |
parent | 5355c3b7b579f803bb18913db3b4d9cf380f17ac (diff) |
Fix for blank RSS1 tag feeds
Diffstat (limited to 'actions')
-rw-r--r-- | actions/tagrss.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actions/tagrss.php b/actions/tagrss.php index 75cbfa274..467a64abe 100644 --- a/actions/tagrss.php +++ b/actions/tagrss.php @@ -35,6 +35,7 @@ class TagrssAction extends Rss10Action $this->clientError(_('No such tag.')); return false; } else { + $this->notices = $this->getNotices($this->limit); return true; } } |