diff options
author | Zach Copley <zach@status.net> | 2009-09-24 15:10:55 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-09-24 15:10:55 -0700 |
commit | e566219299b339fb649eb8a21bd37e8c93844375 (patch) | |
tree | 803b3e95e3ab72608fadb3671b83415667157640 /actions/favoritesrss.php | |
parent | 93b7e601156d88399b57ef9cd2962a22350270a8 (diff) |
Output If-Modified-Since header for all RSS 1.0 feeds (again)
Diffstat (limited to 'actions/favoritesrss.php')
-rw-r--r-- | actions/favoritesrss.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/actions/favoritesrss.php b/actions/favoritesrss.php index 2d5ce9854..62f06e841 100644 --- a/actions/favoritesrss.php +++ b/actions/favoritesrss.php @@ -50,11 +50,11 @@ require_once INSTALLDIR.'/lib/rssaction.php'; */ class FavoritesrssAction extends Rss10Action { - + /** The user whose favorites to display */ - + var $user = null; - + /** * Find the user to display by supplied nickname * @@ -66,7 +66,7 @@ class FavoritesrssAction extends Rss10Action function prepare($args) { parent::prepare($args); - + $nickname = $this->trimmed('nickname'); $this->user = User::staticGet('nickname', $nickname); @@ -74,10 +74,11 @@ class FavoritesrssAction extends Rss10Action $this->clientError(_('No such user.')); return false; } else { + $this->notices = $this->getNotices($this->limit); return true; } } - + /** * Get notices * |