X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Frssaction.php;h=2f25ed7e47d14150094efaa57b5322d1c56b862b;hb=76aa85fe5ef408cecf7c40c0c56d58ff9ac9fcbb;hp=ddba862dcf9b22113d74787215f3a15f094e6b5a;hpb=4b3f022fc2ff142e6d1cb6740b7f89108cfda292;p=quix0rs-gnu-social.git diff --git a/lib/rssaction.php b/lib/rssaction.php index ddba862dcf..2f25ed7e47 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -97,7 +97,11 @@ class Rss10Action extends Action // Parent handling, including cache check parent::handle($args); // Get the list of notices - $this->notices = $this->getNotices($this->limit); + if (empty($this->tag)) { + $this->notices = $this->getNotices($this->limit); + } else { + $this->notices = $this->getTaggedNotices($this->tag, $this->limit); + } $this->showRss(); }