No need to pass in $this->limit and $this-tag

This commit is contained in:
Zach Copley 2010-03-05 16:52:15 -08:00
parent 3d8ddb7cf1
commit 421041c51a

View File

@ -41,9 +41,9 @@ class UserrssAction extends Rss10Action
return false;
} else {
if (!empty($this->tag)) {
$this->notices = $this->getTaggedNotices($this->tag, $this->limit);
$this->notices = $this->getTaggedNotices();
} else {
$this->notices = $this->getNotices($this->limit);
$this->notices = $this->getNotices();
}
return true;
}