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:20:33 -0800 |
commit | f39d3e34bb5298f13824699c7090e05b75d7549b (patch) | |
tree | 1d367820fee05a4861eaa3313694aafccc54aabb | |
parent | 982edc653f36c45f49165b85c3538fb62d2684e7 (diff) |
Fix for blank RSS1 tag feeds
-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; } } |