X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Ftagrss.php;h=468944d11f117a99c4819c693e99dc57bb367bec;hb=c075b9f73068066897f2d42cdbcf1be1bf812380;hp=5f4831d2214e9a500c0d9ea36366670955cd6f48;hpb=25198a8d4cee5b2182f1ecb99192a4108a01afa4;p=quix0rs-gnu-social.git diff --git a/actions/tagrss.php b/actions/tagrss.php index 5f4831d221..468944d11f 100644 --- a/actions/tagrss.php +++ b/actions/tagrss.php @@ -29,11 +29,10 @@ class TagrssAction extends Rss10Action function prepare($args) { parent::prepare($args); $tag = common_canonical_tag($this->trimmed('tag')); - $this->tag = Notice_tag::staticGet('tag', $tag); + $this->tag = Notice_tag::getKV('tag', $tag); if (!$this->tag) { // TRANS: Client error when requesting a tag feed for a non-existing tag. $this->clientError(_('No such tag.')); - return false; } else { $this->notices = $this->getNotices($this->limit); return true;