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=ab8aa670087580f164f96af6727eef5d2cf0a6e1;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; } }