From: Zach Copley Date: Sat, 6 Mar 2010 00:20:33 +0000 (-0800) Subject: Fix for blank RSS1 tag feeds X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f39d3e34bb5298f13824699c7090e05b75d7549b;p=quix0rs-gnu-social.git Fix for blank RSS1 tag feeds --- diff --git a/actions/tagrss.php b/actions/tagrss.php index 75cbfa274b..467a64abed 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; } }